This commit is contained in:
Talyx
2022-01-23 15:56:32 +03:00
26 changed files with 1020 additions and 734 deletions

11
src/config/tomlstuff.hpp Normal file
View File

@@ -0,0 +1,11 @@
#ifndef TOMLSTUFF_HPP
#define TOMLSTUFF_HPP
class toml_node;
typedef std::map<std::string, toml_node *> TOMLMap; // = JSONObject
typedef std::vector<TOMLMap *> TOMLMapArray;
typedef std::vector<toml_node *> TOMLArray;
#endif