|
| | INIReader (const std::string &filename) |
| |
| | INIReader (const char *buffer, size_t buffer_size) |
| |
| int | ParseError () const |
| |
| std::string | Get (const std::string §ion, const std::string &name, const std::string &default_value) const |
| |
| std::string | GetString (const std::string §ion, const std::string &name, const std::string &default_value) const |
| |
| long | GetInteger (const std::string §ion, const std::string &name, long default_value) const |
| |
| double | GetReal (const std::string §ion, const std::string &name, double default_value) const |
| |
| bool | GetBoolean (const std::string §ion, const std::string &name, bool default_value) const |
| |
| bool | HasSection (const std::string §ion) const |
| |
| bool | HasValue (const std::string §ion, const std::string &name) const |
| |