subsurface/core/plannershared.cpp
jan Iversen c0069d6aee core: add plannerShared class
Add a plannerShared class, whose purpose is to contain shared
functions between mobile and desktop

This class is the inner workings of the diveplanner not the UI

Signed-off-by: Jan Iversen <jan@casacondor.com>
2019-12-24 06:30:57 +09:00

9 lines
179 B
C++

// SPDX-License-Identifier: GPL-2.0
#include "plannershared.h"
plannerShared *plannerShared::instance()
{
static plannerShared *self = new plannerShared;
return self;
}