

cIniEd is a class I created to read and write ini files...
Its easy to use...
Code: Select all
cIniEd inied;
// set the section
inied.setSection("data");
// and write a value to the section
inied.iniWrite("value", 25);
// set the section and read a value in one step
int tVal = inied.iniRead_Integer("section2", "value2");