diff options
author | Pixel <Pixel> | 2001-11-26 23:11:40 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-26 23:11:40 +0000 |
commit | 3baa9d168c02a8734b95d1cc467601b6aaf2f6e4 (patch) | |
tree | 6c254e9d75dee5a1e305283788fea3d3fff2a445 /include/Handle.h | |
parent | 3aa63fcbddbce8762ad0f3f54d90ad985c0f9c41 (diff) |
Big job here. Many bugs out. Hurray!!
Diffstat (limited to 'include/Handle.h')
-rw-r--r-- | include/Handle.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Handle.h b/include/Handle.h index 14eb92d..8d006ff 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -24,6 +24,9 @@ * GetName donne le nom associe au handle. (nom de fichier ou autre) */ +#include <sys/types.h> +#include <time.h> + class Handle : public Base { public: Handle(const Handle &); @@ -36,6 +39,8 @@ class Handle : public Base { virtual bool CanRead(); virtual bool CanWrite(); virtual String GetName(); + virtual off_t GetSize(); + virtual time_t GetModif(); void close(); int GetHandle(); |