blob: 65bba52107a3170f70252d1df6872c3c98ed84e8 (
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
|
#include <kurator/universe.h>
#include <memory>
#include <kurator/universe/Repository.h>
#include "JsonRepository.h"
namespace kurator
{
namespace universe
{
std::shared_ptr<Repository>
load_json(const char* path)
{
return std::make_shared<JsonRepository>(path);
}
} // namespace universe
} // namespace kurator
|