diff options
author | pixel <pixel> | 2003-04-13 12:44:14 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-04-13 12:44:14 +0000 |
commit | 7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (patch) | |
tree | f25e693f7842364b0416593cf6a77d383812ce91 /includes/Handle.h | |
parent | ec2c97793151512f5dca3290dbd9f24a09b7ac6f (diff) |
Removing Baltisot from there
Diffstat (limited to 'includes/Handle.h')
-rw-r--r-- | includes/Handle.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/includes/Handle.h b/includes/Handle.h deleted file mode 100644 index b7eed41..0000000 --- a/includes/Handle.h +++ /dev/null @@ -1,63 +0,0 @@ -#ifndef __HANDLE_H__ -#define __HANDLE_H__ -#ifdef __cplusplus - -#ifdef HAVE_ZLIB -#include <zlib.h> -#endif -#include <unistd.h> -#include <iostream> -#include <String.h> -#include <Exceptions.h> - -#include <sys/types.h> -#include <time.h> - -class Handle : public Base { - public: - Handle(const Handle &); - virtual ~Handle(); - virtual ssize_t read(void *buf, size_t count) throw (GeneralException); - virtual ssize_t write(const void *buf, size_t count) throw (GeneralException); - bool IsClosed(void) const; - bool IsNonBlock(void) const; - void SetNonBlock(void); - virtual bool CanRead() const; - virtual bool CanWrite() const; - virtual bool CanSeek() const; - virtual off_t seek(off_t, int = SEEK_SET) throw (GeneralException); - virtual off_t tell() const; - virtual String GetName() const; - virtual ssize_t GetSize() const; - virtual time_t GetModif() const; - void close() throw (GeneralException); - 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; - off_t itell; - private: - ssize_t uwrite(const void *, size_t) throw (GeneralException); - ssize_t uread(void *, size_t); - int h; - bool closed, nonblock; -#ifdef HAVE_ZLIB - gzFile zfile; - int z; -#endif -}; - -Handle & operator<<(Handle &, const String &); -Handle & operator>>(Handle &, String &); - -void copy(Handle *, Handle *, ssize_t = -1); - -#else -#error This only works with a C++ compiler -#endif -#endif |