summaryrefslogtreecommitdiffstats
path: root/stats/statsselection.h
diff options
context:
space:
mode:
Diffstat (limited to 'stats/statsselection.h')
-rw-r--r--stats/statsselection.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/stats/statsselection.h b/stats/statsselection.h
index e3f590466..9e606c533 100644
--- a/stats/statsselection.h
+++ b/stats/statsselection.h
@@ -4,6 +4,10 @@
#ifndef STATS_SELECTION_H
#define STATS_SELECTION_H
+#include <vector>
+
+struct dive;
+
struct SelectionModifier {
unsigned int ctrl : 1;
unsigned int shift : 1;
@@ -12,4 +16,6 @@ struct SelectionModifier {
SelectionModifier() : ctrl(0), shift(0) {}
};
+void processSelection(std::vector<dive *> dives, SelectionModifier modifier);
+
#endif