aboutsummaryrefslogtreecommitdiffstats
path: root/stats/statsseries.h
diff options
context:
space:
mode:
Diffstat (limited to 'stats/statsseries.h')
-rw-r--r--stats/statsseries.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/stats/statsseries.h b/stats/statsseries.h
index 5a29118fb..8a4003550 100644
--- a/stats/statsseries.h
+++ b/stats/statsseries.h
@@ -8,6 +8,7 @@
class StatsAxis;
class StatsView;
+struct dive;
class StatsSeries {
public:
@@ -17,6 +18,7 @@ public:
virtual bool hover(QPointF pos) = 0; // Called on mouse movement. Return true if an item of this series is highlighted.
virtual void unhighlight() = 0; // Unhighlight any highlighted item.
virtual void selectItemsUnderMouse(const QPointF &pos) = 0;
+ virtual void divesSelected(const QVector<dive *> &dives);
protected:
StatsView &view;