#include <zipinputstream.h>
Inheritance diagram for zipios::ZipInputStream
Public Methods | |
ZipInputStream ( istream &is, streampos pos = 0 ) | |
ZipInputStream constructor. More... | |
ZipInputStream ( const string &filename, streampos pos = 0 ) | |
int | available () |
void | closeEntry () |
Closes the current entry, and positions the stream read pointer at the beginning of the next entry (if there is one). More... | |
void | close () |
Closes the istream. More... | |
ConstEntryPointer | getNextEntry () |
Opens the next entry in the zip archive and returns a const pointer to a FileEntry object for the entry. More... | |
virtual | ~ZipInputStream () |
Destructor. More... |
The interface approximates the interface of the Java ZipInputStream.
Definition at line 20 of file zipinputstream.h.
|
ZipInputStream constructor.
Definition at line 11 of file zipinputstream.cpp. |
|
Definition at line 21 of file zipinputstream.cpp. |
|
Destructor.
Definition at line 51 of file zipinputstream.cpp. |
|
Definition at line 31 of file zipinputstream.cpp. |
|
Closes the istream.
Definition at line 39 of file zipinputstream.cpp. |
|
Closes the current entry, and positions the stream read pointer at the beginning of the next entry (if there is one).
Definition at line 35 of file zipinputstream.cpp. |
|
Opens the next entry in the zip archive and returns a const pointer to a FileEntry object for the entry.
Definition at line 46 of file zipinputstream.cpp. |