mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-04-30 18:09:59 +02:00
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:
16
entree.h
Normal file
16
entree.h
Normal 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
|
||||
Reference in New Issue
Block a user