mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 05:00:33 +01:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1 bfdf4180-ca20-0410-9c96-a3a8aa849046
17 lines
402 B
C++
17 lines
402 B
C++
#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
|