summaryrefslogtreecommitdiffstats
path: root/qt-models/models.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-05-28 17:29:58 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-29 14:11:26 -0700
commit257f8063c4437eced155ec5ad0b40791ca814dfb (patch)
tree318060630a47335ba84efff851d7222c53865068 /qt-models/models.h
parentd84ffa8fc3162692597c19c42e621f7d8ac58dca (diff)
downloadsubsurface-257f8063c4437eced155ec5ad0b40791ca814dfb.tar.gz
Move ExtraDataModel to qt-models
Another attempt to make it easyer to create the mobile version. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/models.h')
-rw-r--r--qt-models/models.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/qt-models/models.h b/qt-models/models.h
index 31fb2871e..095791694 100644
--- a/qt-models/models.h
+++ b/qt-models/models.h
@@ -21,25 +21,6 @@
#include "../divecomputer.h"
#include "cleanertablemodel.h"
-/* extra data model for additional dive computer data */
-class ExtraDataModel : public CleanerTableModel {
- Q_OBJECT
-public:
- enum Column {
- KEY,
- VALUE
- };
- explicit ExtraDataModel(QObject *parent = 0);
- /*reimp*/ QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
- /*reimp*/ int rowCount(const QModelIndex &parent = QModelIndex()) const;
-
- void clear();
- void updateDive();
-
-private:
- int rows;
-};
-
/*! An AbstractItemModel for recording dive trip information such as a list of dives.
*
*/