summaryrefslogtreecommitdiffhomepage
path: root/Source.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-05-03 16:12:52 +0200
committerAki <please@ignore.pl>2022-05-03 16:12:52 +0200
commitc610c4b94eda867a3f0b083038502dccb8116170 (patch)
treedda7499b3ac3c9f29bf70ecf927c1031758f53c1 /Source.h
parent8e85b084e6ec73cd99899ad276891eb40944b909 (diff)
downloadderelict-c610c4b94eda867a3f0b083038502dccb8116170.zip
derelict-c610c4b94eda867a3f0b083038502dccb8116170.tar.gz
derelict-c610c4b94eda867a3f0b083038502dccb8116170.tar.bz2
Added source and related stubs
Diffstat (limited to 'Source.h')
-rw-r--r--Source.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Source.h b/Source.h
new file mode 100644
index 0000000..295a65b
--- /dev/null
+++ b/Source.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <vector>
+
+#include "Killmail.h"
+
+
+struct Source
+{
+ virtual ~Source() = default;
+ virtual std::vector<Killmail> all() const = 0;
+};