mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 13:27:59 +03:00
refactor: separate parsing classes
This commit is contained in:
11
includes/tomlstuff.hpp
Normal file
11
includes/tomlstuff.hpp
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user