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

#include <vector>

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


struct ExampleSource : public Source
{
    ExampleSource();
    std::vector<Killmail> all() const override;
};