summaryrefslogtreecommitdiff
path: root/universe/src/JsonRepository.cpp
blob: ddbbfcf98c8b4725c08f8f4824c9375c809dee72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "JsonRepository.h"

#include <functional>
#include <string>

#include <kurator/universe/NotFound.h>
#include <kurator/universe/ShipType.h>
#include <kurator/universe/TurretType.h>


namespace kurator
{
namespace universe
{


JsonRepository::JsonRepository(const char*)
{
}


ShipType
JsonRepository::ship_type(const std::string& id) const
{
	throw NotFound(id);
}


TurretType
JsonRepository::turret_type(const std::string& id) const
{
	throw NotFound(id);
}


void
JsonRepository::for_ship_types(std::function<void(const ShipType&)>) const
{
}


void
JsonRepository::for_turret_types(std::function<void(const TurretType&)>) const
{
}


}  // namespace universe
}  // namespace kurator