* * SimpleJSONWrapper * */
| 64 | * |
| 65 | */ |
| 66 | bool SimpleJSONWrapper::parseString(std::string& sourceString) { |
| 67 | Json::Reader reader; |
| 68 | |
| 69 | return reader.parse(sourceString, root); |
| 70 | } |
| 71 | |
| 72 | bool SimpleJSONWrapper::parseFile(std::string& sourceFile) { |
| 73 | char path[kPathSize]; |
no test coverage detected