5 #include "rrExporter.h"
12 typedef std::vector<IniKey*> KeyList;
13 typedef KeyList::iterator KeyItor;
14 typedef std::vector<string> NonKeyList;
15 typedef NonKeyList::iterator NonKeyItor;
36 IniSection(
const std::string& nameValueString,
const char& sep);
38 IniKey* CreateKey(
const string& _keyName,
const string& Value =
"",
const string& Comment =
"");
39 IniKey* GetKey(
const int& i);
40 IniKey* GetKey(
const string& keyName,
bool create =
false);
41 size_t KeyCount(){
return mKeys.size();}
42 size_t NonKeyCount(){
return mNonKeys.size();}
43 void Clear(){mKeys.clear(); mNonKeys.clear();}
44 string GetNonKeysAsString();
Definition: rrIniKey.h:21
Definition: rrIniSection.h:24