Files
webserv/includes/tomlstuff.hpp
2022-01-22 13:58:44 +03:00

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