summaryrefslogtreecommitdiffhomepage
path: root/Source.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source.h')
-rw-r--r--Source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source.h b/Source.h
index 547fd0e..c1d0876 100644
--- a/Source.h
+++ b/Source.h
@@ -2,11 +2,11 @@
#include <vector>
-#include "Killmail.h"
+#include "Grid.h"
struct Source
{
virtual ~Source() = default;
- virtual std::vector<Killmail> all() const = 0; // maybe an immutable view instead of a copy?
+ virtual std::vector<Grid> grids() const = 0;
};