rcpp_framework/core/settings.h

24 lines
368 B
C++

#ifndef SETTINGS_H
#define SETTINGS_H
#include "core/string.h"
#include "rapidjson/document.h"
class Settings {
public:
rapidjson::Document settings;
void parse_file(const String &path);
static Settings *get_singleton();
Settings(const bool singleton = false);
virtual ~Settings();
protected:
static Settings *_singleton;
};
#endif