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

#include <vector>

#include "Grid.h"
#include "Source.h"


class DumpSource : public Source
{
public:
    explicit DumpSource(const char* filename);
    std::vector<Grid> grids() const override;
private:
    std::vector<Grid> m_grids;
};