|
- #ifndef COMPARATOR_H
- #define COMPARATOR_H
- #include "item.h"
-
- class Comparator : public Item
- {
- public:
- Comparator(const QString &type);
- void paint(QPainter *painter,
- const QStyleOptionGraphicsItem *option,
- QWidget *) override;
- };
-
- #endif // COMPARATOR_H
|