Changeset 11553 for trunk/Mars/mfileio
- Timestamp:
- 07/24/11 11:01:36 (14 years ago)
- Location:
- trunk/Mars/mfileio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mfileio/MReadFiles.cc
r9041 r11553 37 37 #include "MLogManip.h" 38 38 39 #include " MZlib.h"39 #include "izstream.h" 40 40 #include "MDirIter.h" 41 41 … … 142 142 143 143 // open a stream to a zipped or unzipped file 144 fIn = new MZlib(fFileName);144 fIn = new izstream(fFileName); 145 145 if (!*fIn) 146 146 { -
trunk/Mars/mfileio/MReadFiles.h
r9032 r11553 6 6 #endif 7 7 8 class MZlib;8 class izstream; 9 9 10 10 class MReadFiles : public MRead … … 25 25 26 26 protected: 27 MZlib*fIn; // the inputfile27 izstream *fIn; // the inputfile 28 28 29 29 // MReadFiles
Note:
See TracChangeset
for help on using the changeset viewer.