38#ifndef __IoIntfCspReader_h
39#define __IoIntfCspReader_h
74 IoIntf_SeekAndRead seekAndReadFp;
83 const char* pathName);
85#define IoIntfCspReader_destructor(o) IoIntfCspReader_close(o);
88inline IoIntfCspReader::IoIntfCspReader(
IoIntf* io,
const char* pathName) {
89 IoIntfCspReader_constructor(
this, io, pathName); }
91 IoIntfCspReader_destructor(
this); }
93 return IoIntfCspReader_close(
this); }
Abstract interface class for reading the "dat" file generated byHttpLink.
Definition: CspRunTm.h:119
The IoIntfCspReader, which implements the abstract CspReader interface, makes it possible to open a "...
Definition: IoIntfCspReader.h:51
int close()
Close the file connection.
Definition: IoIntfCspReader.h:92
~IoIntfCspReader()
The destructor closes the file connection.
Definition: IoIntfCspReader.h:90
The IoIntf class specifies an abstract file API, implementations include ZipIo, DiskIo,...
Definition: IoIntf.h:377