summaryrefslogtreecommitdiffhomepage
path: root/ExampleSource.h
blob: 2086ca564bbf1213b80e4a463dcb8cb5cfee8e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <vector>

#include "Killmail.h"
#include "Source.h"


class ExampleSource : public Source
{
public:
    ExampleSource();
    std::vector<Killmail> all() const override;
private:
    mutable float m_time;
};