25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
261 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. };
  12. #endif // COIL_H