mirror of
https://github.com/benhoyt/inih.git
synced 2025-01-28 22:52:54 +08:00
9cecf0643d
Add INIReader::GetInteger64 and INIReader::GetUnsigned64
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
// Example that shows simple usage of the INIReader class
|
|
|
|
#include <iostream>
|
|
#include "../cpp/INIReader.h"
|
|
|
|
int main()
|
|
{
|
|
INIReader reader("../examples/test.ini");
|
|
|
|
if (reader.ParseError() < 0) {
|
|
std::cout << "Can't load 'test.ini'\n";
|
|
return 1;
|
|
}
|
|
std::cout << "Config loaded from 'test.ini': version="
|
|
<< reader.GetInteger("protocol", "version", -1) << ", unsigned version="
|
|
<< reader.GetUnsigned("protocol", "version", -1) << ", trillion="
|
|
<< reader.GetInteger64("user", "trillion", -1) << ", unsigned trillion="
|
|
<< reader.GetUnsigned64("user", "trillion", -1) << ", name="
|
|
<< reader.Get("user", "name", "UNKNOWN") << ", email="
|
|
<< reader.Get("user", "email", "UNKNOWN") << ", pi="
|
|
<< reader.GetReal("user", "pi", -1) << ", active="
|
|
<< reader.GetBoolean("user", "active", true) << "\n";
|
|
std::cout << "Has values: user.name=" << reader.HasValue("user", "name")
|
|
<< ", user.nose=" << reader.HasValue("user", "nose") << "\n";
|
|
std::cout << "Has sections: user=" << reader.HasSection("user")
|
|
<< ", fizz=" << reader.HasSection("fizz") << "\n";
|
|
return 0;
|
|
}
|