summaryrefslogtreecommitdiffhomepage
path: root/Snapshot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Snapshot.cpp')
-rw-r--r--Snapshot.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Snapshot.cpp b/Snapshot.cpp
index 57f81db..99cf400 100644
--- a/Snapshot.cpp
+++ b/Snapshot.cpp
@@ -1,4 +1,4 @@
-#include "DumpSource.h"
+#include "Snapshot.h"
#include <ctime>
#include <sstream>
@@ -23,7 +23,7 @@ void from_json(const json& j, Killmail& km);
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(LongVector3, x, y, z)
-DumpSource::DumpSource(const char* filename) :
+Snapshot::Snapshot(const char* filename) :
m_killmails {}
{
if (!FileExists(filename))
@@ -43,7 +43,7 @@ DumpSource::DumpSource(const char* filename) :
std::vector<Killmail>
-DumpSource::killmails() const
+Snapshot::killmails() const
{
return m_killmails;
}