Changeset 11553 for trunk/Mars/mraw
- Timestamp:
- 07/24/11 11:01:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mraw/MRawFileRead.cc
r11447 r11553 50 50 #include "MLogManip.h" 51 51 52 #include " MZlib.h"52 #include "izstream.h" 53 53 #include "MTime.h" 54 54 #include "MParList.h" … … 127 127 Byte_t MRawFileRead::IsFileValid(const char *name) 128 128 { 129 MZlibfin(name);129 izstream fin(name); 130 130 if (!fin) 131 131 return 0; … … 164 164 istream *MRawFileRead::OpenFile(const char *filename) 165 165 { 166 return new MZlib(filename);166 return new izstream(filename); 167 167 } 168 168
Note:
See TracChangeset
for help on using the changeset viewer.