Import initial

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavierqet
2006-10-27 15:47:22 +00:00
commit 5cadf173c7
71 changed files with 4586 additions and 0 deletions

16
entree.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef ENTREE_H
#define ENTREE_H
#include "elementfixe.h"
/**
Cette classe herite de la classe Element Fixe pour definir une
entree.
*/
class Entree : public ElementFixe{
public:
Entree(QGraphicsItem * = 0, Schema * = 0);
virtual int nbBornes() const;
void paint(QPainter *, const QStyleOptionGraphicsItem *);
QString typeId();
QString nom() { return("Entr\351e"); }
};
#endif