Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #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
|