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

#include <vector>

#include "Killmail.h"


struct Source
{
    virtual ~Source() = default;
    virtual std::vector<Killmail> all() const = 0;  // maybe an immutable view instead of a copy?
};