mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
12 lines
198 B
C++
12 lines
198 B
C++
|
#include "diveplanner.h"
|
||
|
|
||
|
DivePlanner* DivePlanner::instance()
|
||
|
{
|
||
|
static DivePlanner *self = new DivePlanner();
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
DivePlanner::DivePlanner(QWidget* parent): QGraphicsView(parent)
|
||
|
{
|
||
|
}
|