refactor: separate parsing classes

This commit is contained in:
3lswear
2022-01-22 13:58:44 +03:00
parent 7e82ea0f86
commit 51a3050beb
12 changed files with 609 additions and 515 deletions

11
includes/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