| 544 | } |
| 545 | |
| 546 | std::string FileUtils::getStringFromFile(std::string_view filename) const |
| 547 | { |
| 548 | std::string s; |
| 549 | getContents(filename, &s); |
| 550 | return s; |
| 551 | } |
| 552 | #ifndef AX_CORE_PROFILE |
| 553 | void FileUtils::getStringFromFile(std::string_view path, std::function<void(std::string)> callback) const |
| 554 | { |