summaryrefslogtreecommitdiffhomepage
path: root/DumpSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'DumpSource.h')
-rw-r--r--DumpSource.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/DumpSource.h b/DumpSource.h
index e90c8af..3c18b69 100644
--- a/DumpSource.h
+++ b/DumpSource.h
@@ -2,7 +2,7 @@
#include <vector>
-#include "Grid.h"
+#include "Killmail.h"
#include "Source.h"
@@ -10,7 +10,7 @@ class DumpSource : public Source
{
public:
explicit DumpSource(const char* filename);
- std::vector<Grid> grids() const override;
+ std::vector<Killmail> killmails() const override;
private:
- std::vector<Grid> m_grids;
+ std::vector<Killmail> m_killmails;
};