#include <sstream>
#include "util/exception.h"
#include "util/strings.h"
#include "util/ini_parser.h"
Go to the source code of this file.
|
| namespace | util |
| | Parser, tokenizer, timer, smart pointer, threads, etc.
|
| |
|
| void | util::parse_ini (std::istream &stream, std::map< std::string, std::string > *map) |
| | Parses a file in INI format and places key/value pairs in the map.
|
| |
| void | util::write_ini (std::map< std::string, std::string > const &map, std::ostream &stream) |
| | Writes an INI file for the key/value pairs in the map.
|
| |