Tyro/src/settings/Config.h

20 lines
287 B
C
Raw Normal View History

#ifndef TYRO_CONFIG_H
#define TYRO_CONFIG_H
2015-07-07 10:01:17 -04:00
#include "src/common.h"
class TyroConfig {
public:
TyroConfig();
~TyroConfig();
JsonValue GetRoot();
2015-04-21 09:55:28 -04:00
void LoadJson(const char json[]);
private:
JsonValue default_root;
JsonReader reader;
};
#endif /* TYRO_CONFIG_H */