| 561 | } |
| 562 | #endif |
| 563 | Data FileUtils::getDataFromFile(std::string_view filename) const |
| 564 | { |
| 565 | Data d; |
| 566 | getContents(filename, &d); |
| 567 | return d; |
| 568 | } |
| 569 | #ifndef AX_CORE_PROFILE |
| 570 | void FileUtils::getDataFromFile(std::string_view filename, std::function<void(Data)> callback) const |
| 571 | { |