@@ -0,0 +1,6 @@
+#include "CMind.h"
+
+CMind::CMind()
+{
+}
@@ -0,0 +1,11 @@
+#ifndef CMIND_H
+#define CMIND_H
+class CMind
+public:
+ CMind();
+};
+#endif // CMIND_H
@@ -0,0 +1,5 @@
+#include "CRectItem.h"
+CRectItem::CRectItem(QGraphicsItem *parent) : QGraphicsPathItem(parent) { }
+void CRectItem::mousePressEvent(QGraphicsSceneMouseEvent *event) { }
@@ -0,0 +1,14 @@
+#ifndef CRECTITEM_H
+#define CRECTITEM_H
+#include <QGraphicsPathItem>
+class CRectItem : public QGraphicsPathItem
+ explicit CRectItem(QGraphicsItem *parent = nullptr);
+ void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
+#endif // CRECTITEM_H