summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Handle.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Handle.h b/include/Handle.h
index 1a3973d..23ecfe6 100644
--- a/include/Handle.h
+++ b/include/Handle.h
@@ -37,6 +37,7 @@ class Handle : public Base {
virtual bool CanWatch() const;
virtual int Dup() const;
virtual void SetZ(int = 9) throw (GeneralException);
+ virtual void Flush();
protected:
Handle(int h);
int GetHandle() const;
@@ -47,7 +48,8 @@ class Handle : public Base {
int h;
bool closed, nonblock;
gzFile zfile;
- int z;
+ zstream zstrm;
+ int z, c;
};
Handle & operator<<(Handle &, const String &);