FACT++  1.0
izstream::izstream ( const char *  name)
inline

Definition at line 57 of file izstream.h.

References fgBufferSize, and open().

57  : std::istream(this), fFile(0)
58  {
59  fBuffer = new char[fgBufferSize];
60  setg(fBuffer+4, fBuffer+4, fBuffer+4);
61  open(name);
62  }
static const int fgBufferSize
Definition: izstream.h:18
void open(const char *name)
Definition: izstream.h:72
char * fBuffer
Definition: izstream.h:21
gzFile fFile
Definition: izstream.h:20

+ Here is the call graph for this function: