mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Revert the singleton PR
It turns out that this isn't working the way it was intended to. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
400b218f76
commit
9ae7040a91
15 changed files with 118 additions and 89 deletions
|
|
@ -3,10 +3,10 @@
|
|||
#define GPSLISTMODEL_H
|
||||
|
||||
#include "core/gpslocation.h"
|
||||
#include "core/singleton.h"
|
||||
#include <QObject>
|
||||
#include <QAbstractListModel>
|
||||
|
||||
class GpsListModel : public QAbstractListModel, public SillySingleton<GpsListModel>
|
||||
class GpsListModel : public QAbstractListModel
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
|
@ -19,14 +19,16 @@ public:
|
|||
GpsWhenRole
|
||||
};
|
||||
|
||||
static GpsListModel *instance();
|
||||
GpsListModel(QObject *parent = 0);
|
||||
void clear();
|
||||
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||
QHash<int, QByteArray> roleNames() const;
|
||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
||||
void update(QVector<gpsTracker> trackers);
|
||||
void update();
|
||||
private:
|
||||
QVector<gpsTracker> m_gpsFixes;
|
||||
static GpsListModel *m_instance;
|
||||
};
|
||||
|
||||
#endif // GPSLISTMODEL_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue