diff options
Diffstat (limited to 'qt-models/divelocationmodel.h')
-rw-r--r-- | qt-models/divelocationmodel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-models/divelocationmodel.h b/qt-models/divelocationmodel.h index 4840bff21..794056324 100644 --- a/qt-models/divelocationmodel.h +++ b/qt-models/divelocationmodel.h @@ -9,6 +9,9 @@ #define RECENTLY_ADDED_DIVESITE ((struct dive_site *)~0) +struct dive; +struct dive_trip; + class LocationInformationModel : public QAbstractTableModel { Q_OBJECT public: @@ -30,6 +33,7 @@ public: public slots: void update(); QStringList allSiteNames() const; + void diveSiteDiveCountChanged(struct dive_site *ds); private: QStringList locationNames; }; |