| 
                   | 
               
                  
                   | 
            |
Location: 
            zipfilememberinputstream.h
            
Link against: ezip.lib
            
         
class RZipFileMemberReaderStream : public CBase;
A RZipFileMemberReaderStream represents a input stream for compressed files in the archive. This is a friend class to CZipFile. In order to create a input stream for a file in the archive, CZipFile will call its member function GetInputStreamL() by passing a pointer to RZipFileMemberReaderStream and the function will
            return the input stream for the file
         
CBase - Base class for all classes to be instantiated on the heap
            RZipFileMemberReaderStream - A RZipFileMemberReaderStream represents a input stream for compressed files in the archive
            Defined in RZipFileMemberReaderStream:
            Read(), Read(), Read(), Read(), ReadL(), ~RZipFileMemberReaderStream()
            
         
Inherited from CBase:
            Delete(),
            Extension_(),
            operator new()
IMPORT_C ~RZipFileMemberReaderStream();
Destructor. All dynamically allocated data structures for this stream are freed.
IMPORT_C TInt Read(TDes16 &aDes, TInt aLength);
Reads data from the stream buffer into the specified descriptor. On return, contains the data read from the stream buffer
                  
  | 
            
                  
  | 
            
virtual TInt Read(TDes8 &aDes, TInt aLength);
Overload version of the RZipFileMemberReaderStream read method. On return, contains the data read from the stream buffer.
                  
  | 
            
                  
  | 
            
virtual void ReadL(TDes16 &aDes, TInt aLength);
Overload version of the RZipFileMemberReaderStream readL method. On return, contains the data read from the stream buffer.
                  
  | 
            
                  
  |