mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-03-21 12:39:59 +01: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:
15
elementfixe.h
Normal file
15
elementfixe.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef ELEMENTFIXE_H
|
||||
#define ELEMENTFIXE_H
|
||||
#include "element.h"
|
||||
class ElementFixe : public Element {
|
||||
public:
|
||||
ElementFixe(QGraphicsItem * = 0, Schema * = 0);
|
||||
int nbBornesMin() const;
|
||||
int nbBornesMax() const;
|
||||
virtual bool fromXml(QDomElement &, QHash<int, Borne *>&);
|
||||
virtual int nbBornes() const = 0;
|
||||
virtual void paint(QPainter *, const QStyleOptionGraphicsItem *) = 0;
|
||||
virtual QString typeId() = 0;
|
||||
virtual QString nom() = 0;
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user