summaryrefslogtreecommitdiff
path: root/include/Handle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Handle.h')
-rw-r--r--include/Handle.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/Handle.h b/include/Handle.h
index 9744b7e..e545109 100644
--- a/include/Handle.h
+++ b/include/Handle.h
@@ -5,9 +5,7 @@
#include <sys/types.h>
#include <time.h>
-#ifdef HAVE_ZLIB
#include <zlib.h>
-#endif
#include <unistd.h>
#include <iostream>
#include <String.h>
@@ -34,9 +32,7 @@ class Handle : public Base {
int GetHandle();
virtual bool CanWatch() const;
virtual void Dup(const Handle &);
-#ifdef HAVE_ZLIB
virtual void SetZ(int = 9) throw (GeneralException);
-#endif
protected:
Handle(int h);
int GetHandle() const;
@@ -46,10 +42,8 @@ class Handle : public Base {
ssize_t uread(void *, size_t);
int h;
bool closed, nonblock;
-#ifdef HAVE_ZLIB
gzFile zfile;
int z;
-#endif
};
Handle & operator<<(Handle &, const String &);