282a283,292
> void
> IniFile::getSectionNames(vector<string> &list) const
> {
> for (SectionTable::const_iterator i = table.begin();
> i != table.end(); ++i)
> {
> list.push_back((*i).first);
> }
> }
>