mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-29 05:17:59 +03:00
12 lines
229 B
C++
12 lines
229 B
C++
#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
|
|
|