Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

16 строки
294 B

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