| 289 | } |
| 290 | |
| 291 | ValueMap FileUtils::getValueMapFromData(const char *filedata, int filesize) { |
| 292 | DictMaker tMaker; |
| 293 | return tMaker.dictionaryWithDataOfFile(filedata, filesize); |
| 294 | } |
| 295 | |
| 296 | ValueVector FileUtils::getValueVectorFromFile(const ccstd::string &filename) { |
| 297 | const ccstd::string fullPath = fullPathForFilename(filename); |
nothing calls this directly
no test coverage detected