blob: 847daedb80ac959ef7a136bc791ec98f53609f73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef POINT_H
#define SPOINT_H
#include "pixmapitem.h"
class Point
: public PixmapItem
{
public:
Point(QGraphicsItem *parent=0);
virtual ~Point() {};
};
#endif // POINT_H
|