mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-17 10:35:58 +01:00
17 lines
483 B
C++
17 lines
483 B
C++
|
#include "public.hpp"
|
||
|
|
||
|
#include <unordered_map>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
class CConfigImpl {
|
||
|
public:
|
||
|
std::string path = "";
|
||
|
|
||
|
std::unordered_map<std::string, Hyprlang::CConfigValue> values;
|
||
|
std::unordered_map<std::string, Hyprlang::CConfigValue> defaultValues;
|
||
|
|
||
|
std::vector<std::string> categories;
|
||
|
|
||
|
std::string parseError = "";
|
||
|
};
|