blob: d8d1bfbfcf00880c3f0c6b3cd294b2b8f8ac72ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "diveplanner.h"
DivePlanner* DivePlanner::instance()
{
static DivePlanner *self = new DivePlanner();
return self;
}
DivePlanner::DivePlanner(QWidget* parent): QGraphicsView(parent)
{
}
|