| 62 | } |
| 63 | |
| 64 | bool SettingsManager::getExistValue(CString _path) |
| 65 | { |
| 66 | pugi::xpath_node node = mUserDocument->document_element().select_single_node(_path.c_str()); |
| 67 | if (!node.node().empty()) |
| 68 | return true; |
| 69 | |
| 70 | node = mDocument->document_element().select_single_node(_path.c_str()); |
| 71 | return !node.node().empty(); |
| 72 | } |
| 73 | |
| 74 | std::string SettingsManager::getValue(CString _path) |
| 75 | { |
nothing calls this directly
no test coverage detected