summaryrefslogtreecommitdiff
path: root/includes/Handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Handle.h')
-rw-r--r--includes/Handle.h2
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 &);