mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-03 15:43:09 +00:00
c0069d6aee
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>
9 lines
179 B
C++
9 lines
179 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "plannershared.h"
|
|
|
|
|
|
plannerShared *plannerShared::instance()
|
|
{
|
|
static plannerShared *self = new plannerShared;
|
|
return self;
|
|
}
|