aboutsummaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt/divelistnotifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/subsurface-qt/divelistnotifier.h')
-rw-r--r--core/subsurface-qt/divelistnotifier.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/subsurface-qt/divelistnotifier.h b/core/subsurface-qt/divelistnotifier.h
index eb44d6cde..7f7162dac 100644
--- a/core/subsurface-qt/divelistnotifier.h
+++ b/core/subsurface-qt/divelistnotifier.h
@@ -10,6 +10,8 @@
#include <QObject>
+struct device;
+
// Dive and trip fields that can be edited. Use bit fields so that we can pass multiple fields at once.
// Provides an inlined flag-based constructur because sadly C-style designated initializers are only supported since C++20.
struct DiveField {
@@ -125,6 +127,10 @@ signals:
void picturesRemoved(dive *d, QVector<QString> filenames);
void picturesAdded(dive *d, QVector<PictureObj> pics);
+ // Devices related signals
+ void deviceAdded(int index);
+ void deviceDeleted(int index);
+
// Filter related signals
void filterPresetAdded(int index);
void filterPresetRemoved(int index);