1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef DIVEPLANNER_H #define DIVEPLANNER_H #include <QGraphicsView> #include <QGraphicsPathItem> class DivePlanner : public QGraphicsView { Q_OBJECT public: static DivePlanner *instance(); private: DivePlanner(QWidget* parent = 0); }; #endif