Skip to content

bmoscon/ConfigParse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

##INI Config File Parser

Example usage:

ConfigParse cp("config.ini");

std::string value = cp.get_value("Section Name", "Name");

or, iterate over name-value pairs in a section:

ConfigParse::const_iterator it = cp.begin(SectionName);

while (it != cp.end(SectionName)) {
    std::cout << it->first << " = " << it->second << std::endl;
    ++it;
}

for complete list of methods/types, see config_parse.hpp

About

INI Config File Parser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published