summaryrefslogtreecommitdiffhomepage
path: root/Source.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source.h')
-rw-r--r--Source.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source.h b/Source.h
index 1dba9ea..f583666 100644
--- a/Source.h
+++ b/Source.h
@@ -3,10 +3,12 @@
#include <vector>
#include "Killmail.h"
+#include "Owner.h"
struct Source
{
virtual ~Source() = default;
virtual std::vector<Killmail> killmails() const = 0;
+ virtual int team(const Owner& owner) const = 0;
};