summaryrefslogtreecommitdiffhomepage
path: root/ExampleSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'ExampleSource.h')
-rw-r--r--ExampleSource.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/ExampleSource.h b/ExampleSource.h
index 2f45332..2086ca5 100644
--- a/ExampleSource.h
+++ b/ExampleSource.h
@@ -6,8 +6,11 @@
#include "Source.h"
-struct ExampleSource : public Source
+class ExampleSource : public Source
{
+public:
ExampleSource();
std::vector<Killmail> all() const override;
+private:
+ mutable float m_time;
};