| 322 | } |
| 323 | |
| 324 | void Settings::beginGroup(const UTF8 *groupName, bool fromStart) |
| 325 | { |
| 326 | // check if we want to clear the stack |
| 327 | if(fromStart) |
| 328 | clearGroups(); |
| 329 | |
| 330 | mGroupStack.push_back(String(groupName)); |
| 331 | } |
| 332 | |
| 333 | void Settings::endGroup() |
| 334 | { |
no test coverage detected