aboutsummaryrefslogtreecommitdiffstats
path: root/commands/command_divesite.h
diff options
context:
space:
mode:
Diffstat (limited to 'commands/command_divesite.h')
-rw-r--r--commands/command_divesite.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/command_divesite.h b/commands/command_divesite.h
index db0c5c73e..c81397410 100644
--- a/commands/command_divesite.h
+++ b/commands/command_divesite.h
@@ -5,10 +5,15 @@
#define COMMAND_DIVESITE_H
#include "command_base.h"
-#include "core/gpslocation.h"
#include <QVector>
+struct DiveAndLocation {
+ struct dive *d;
+ location_t location;
+ QString name;
+};
+
// We put everything in a namespace, so that we can shorten names without polluting the global namespace
namespace Command {