summaryrefslogtreecommitdiffstats
path: root/qt-ui/diveplanner.h
blob: 9a7d0859f78ceab96afecba618d1a6e05ed40155 (plain) (blame)
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