29 typedef std::map<std::string, std::string> keys_t;
30 typedef std::map<std::string, keys_t> sections_t;
37 sections_t::const_iterator curSection;
40 std::string parseSection(
const std::string &buffer);
42 std::pair<std::string, std::string> parseKey(
const std::string &buffer);
45 bool open(
const char *fName);
48 bool setSection(
const char *section);
49 const char *getValue(
const char *key);
Definition: iniParser.h:26