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