https://github.com/blakeliafk/inihpp
https://github.com/blakeliafk/inihpp
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blakeliafk/inihpp
- Owner: BlakeLiAFK
- Created: 2017-07-25T07:21:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-25T07:28:38.000Z (almost 8 years ago)
- Last Synced: 2025-02-07T08:23:30.894Z (4 months ago)
- Language: C++
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# inihpp
Make ini file more easy.
Only need to include the "inihpp.h" to your proj, and enjoy it.
## Read
```
inihpp ini;
ini.parse(file);
ini.get("database", "comment");
```## Write
```
inihpp ini;
ini.set("history", "mem_port", "8964");
ini.save("main.ini");
```