- Timestamp:
- 05/13/10 13:01:06 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/jpeg/ReaderWriterJPEG.cpp
r10963 r11428 853 853 if (fileName.empty()) return ReadResult::FILE_NOT_FOUND; 854 854 855 std::ifstream istream(fileName.c_str(), std::ios::in | std::ios::binary);855 osgDB::ifstream istream(fileName.c_str(), std::ios::in | std::ios::binary); 856 856 if(!istream) return ReadResult::ERROR_IN_READING_FILE; 857 857 ReadResult rr = readJPGStream(istream); … … 873 873 if (!acceptsExtension(ext)) return WriteResult::FILE_NOT_HANDLED; 874 874 875 std::ofstream fout(fileName.c_str(), std::ios::out | std::ios::binary);875 osgDB::ofstream fout(fileName.c_str(), std::ios::out | std::ios::binary); 876 876 if(!fout) return WriteResult::ERROR_IN_WRITING_FILE; 877 877
