| 114 | } |
| 115 | |
| 116 | Vfs::FileContent Vfs::ReadFile( const char* const file_path ) const |
| 117 | { |
| 118 | FileContent result; |
| 119 | ReadFile( file_path, result ); |
| 120 | return result; |
| 121 | } |
| 122 | |
| 123 | void Vfs::ReadFile( const char* const file_path, FileContent& out_file_content ) const |
| 124 | { |
no test coverage detected