#ifndef INI_H #define INI_H #include #include #include namespace INI { struct Section { std::string title; std::map data; }; std::list
load(const char *path); bool save(const char *path, const std::list
§ions); } #endif /* INI_H */