#pragma once #include #include #include using namespace nlohmann; struct Config { std::wstring_convert> $converter; json $config; std::string $src_path = "./config.json"; Config(const std::string src_path); Config(Config &other) = delete; json &operator[](const std::string &key); std::wstring wstring(const std::string main_key, const std::string sub_key); };