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.

15 wiersze
291 B

  1. #ifndef COMPARATOR_H
  2. #define COMPARATOR_H
  3. #include "item.h"
  4. class Comparator : public Item
  5. {
  6. public:
  7. Comparator(const QString &type);
  8. void paint(QPainter *painter,
  9. const QStyleOptionGraphicsItem *option,
  10. QWidget *) override;
  11. };
  12. #endif // COMPARATOR_H