Changeset 11553 for trunk/Mars/mraw


Ignore:
Timestamp:
07/24/11 11:01:36 (13 years ago)
Author:
tbretz
Message:
Replaced MZlib with izstream
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mraw/MRawFileRead.cc

    r11447 r11553  
    5050#include "MLogManip.h"
    5151
    52 #include "MZlib.h"
     52#include "izstream.h"
    5353#include "MTime.h"
    5454#include "MParList.h"
     
    127127Byte_t MRawFileRead::IsFileValid(const char *name)
    128128{
    129     MZlib fin(name);
     129    izstream fin(name);
    130130    if (!fin)
    131131        return 0;
     
    164164istream *MRawFileRead::OpenFile(const char *filename)
    165165{
    166     return new MZlib(filename);
     166    return new izstream(filename);
    167167}
    168168
Note: See TracChangeset for help on using the changeset viewer.