Remove plannerShared::instance()

This class contains only static functions (i.e. it does not contain
any state). There does not seem to be a reason to have an instance
of that class. Therefore, remove the instance() function.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-01-31 06:54:00 +01:00 committed by bstoeger
parent 3b42de66dc
commit 8396b4bf01
4 changed files with 11 additions and 23 deletions

View file

@ -6,12 +6,6 @@
#include "qt-models/diveplannermodel.h"
#include "qt-models/cylindermodel.h"
plannerShared *plannerShared::instance()
{
static plannerShared *self = new plannerShared;
return self;
}
// Planning values
deco_mode plannerShared::planner_deco_mode()
{

View file

@ -16,8 +16,6 @@ class plannerShared: public QObject {
Q_OBJECT
public:
static plannerShared *instance();
// Planning data
static deco_mode planner_deco_mode();
static int reserve_gas();
@ -53,9 +51,6 @@ public slots:
static void set_bottompo2(double value);
static void set_decopo2(double value);
static void set_bestmixend(int value);
private:
plannerShared() {}
};
#endif // PLANNERSHARED_H