mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-05-24 06:40:00 +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
del.h
Normal file
16
del.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef DEL_H
|
||||
#define DEL_H
|
||||
#include "elementfixe.h"
|
||||
/**
|
||||
Cette classe herite de la classe Element Fixe pour definir une
|
||||
Diode ElectroLuminescente
|
||||
*/
|
||||
class DEL : public ElementFixe {
|
||||
public:
|
||||
DEL(QGraphicsItem * = 0, Schema * = 0);
|
||||
virtual int nbBornes() const;
|
||||
void paint(QPainter *, const QStyleOptionGraphicsItem *);
|
||||
QString typeId();
|
||||
QString nom() { return("DEL"); }
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user