diff options
author | Pixel <Pixel> | 2002-08-13 18:20:13 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-08-13 18:20:13 +0000 |
commit | 1d836e3fd9d3c4f9ce08b6a062dd597e5fe4e1dc (patch) | |
tree | 41cbf99c45ad771a4b9f1812f38cf396e738803e /includes/Handle.h | |
parent | 89a43700b18c61d209ffb68db57e020f11a2daa9 (diff) |
Worked a little more
Diffstat (limited to 'includes/Handle.h')
-rw-r--r-- | includes/Handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Handle.h b/includes/Handle.h index fdaea2c..967e221 100644 --- a/includes/Handle.h +++ b/includes/Handle.h @@ -35,6 +35,7 @@ class Handle : public Base { virtual void SetZ(int) throw (GeneralException); protected: Handle(int h); + off_t itell; private: ssize_t uwrite(const void *, size_t) throw (GeneralException); ssize_t uread(void *, size_t); @@ -42,7 +43,6 @@ class Handle : public Base { bool closed, nonblock; gzFile zfile; int z; - off_t itell; }; Handle & operator<<(Handle &, const String &); |