diff options
Diffstat (limited to 'qt-models/models.h')
-rw-r--r-- | qt-models/models.h | 19 |
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. * */ |