- Timestamp:
- 05/13/10 13:01:06 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/bvh/ReaderWriterBVH.cpp
r11009 r11428 380 380 if ( fileName.empty() ) return ReadResult::FILE_NOT_FOUND; 381 381 382 std::ifstream stream( fileName.c_str(), std::ios::in|std::ios::binary );382 osgDB::ifstream stream( fileName.c_str(), std::ios::in|std::ios::binary ); 383 383 if( !stream ) return ReadResult::ERROR_IN_READING_FILE; 384 384 return readNode( stream, options );
