| 72 | } |
| 73 | |
| 74 | IOStream* VirtualFileSystem::getFileFromPath( const std::string& path ) { |
| 75 | Pack* pack = getPackFromFile( path ); |
| 76 | return NULL != pack ? pack->getFileStream( path ) : NULL; |
| 77 | } |
| 78 | |
| 79 | bool VirtualFileSystem::fileExists( const std::string& path ) { |
| 80 | return NULL != getPackFromFile( path ); |
no test coverage detected