Skip to content

Parse a ini file

X-rays5 edited this page Feb 9, 2022 · 3 revisions

Parsing a ini file is really easy

try {
  inireader.Parse("test.ini", true);
} catch (std::runtime_error& e) {
  std::cerr << "[ERROR] " << e.what() << std::endl;
}
Clone this wiki locally