You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
441 B
20 lines
441 B
#pragma once
|
|
#include <nlohmann/json.hpp>
|
|
#include <fstream>
|
|
#include <codecvt>
|
|
|
|
using namespace nlohmann;
|
|
|
|
struct Config {
|
|
json $config;
|
|
std::string $src_path = "./config.json";
|
|
|
|
Config(const std::string src_path);
|
|
|
|
Config(json config, std::string src_path)
|
|
: $config(config), $src_path(src_path) {}
|
|
|
|
json &operator[](const std::string &key);
|
|
|
|
std::wstring wstring(const std::string main_key, const std::string sub_key);
|
|
};
|
|
|