| 549 | } |
| 550 | |
| 551 | ccstd::string FileUtils::getStringFromFile(const ccstd::string &filename) { |
| 552 | ccstd::string s; |
| 553 | getContents(filename, &s); |
| 554 | return s; |
| 555 | } |
| 556 | |
| 557 | Data FileUtils::getDataFromFile(const ccstd::string &filename) { |
| 558 | Data d; |
no test coverage detected