| 341 | }; |
| 342 | |
| 343 | ValueMap FileUtils::getValueMapFromFile(std::string_view filename) const |
| 344 | { |
| 345 | const std::string fullPath = fullPathForFilename(filename); |
| 346 | DictMaker tMaker; |
| 347 | return tMaker.dictionaryWithContentsOfFile(fullPath); |
| 348 | } |
| 349 | |
| 350 | ValueMap FileUtils::getValueMapFromData(const char* filedata, int filesize) const |
| 351 | { |