summaryrefslogtreecommitdiff
path: root/include/Input.h
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-26 23:11:40 +0000
committerPixel <Pixel>2001-11-26 23:11:40 +0000
commit3baa9d168c02a8734b95d1cc467601b6aaf2f6e4 (patch)
tree6c254e9d75dee5a1e305283788fea3d3fff2a445 /include/Input.h
parent3aa63fcbddbce8762ad0f3f54d90ad985c0f9c41 (diff)
Big job here. Many bugs out. Hurray!!
Diffstat (limited to 'include/Input.h')
-rw-r--r--include/Input.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Input.h b/include/Input.h
index 471ba91..ae8ef09 100644
--- a/include/Input.h
+++ b/include/Input.h
@@ -2,6 +2,8 @@
#define __INPUT_H__
#ifdef __cplusplus
+#include <sys/types.h>
+#include <time.h>
#include <String.h>
#include <Handle.h>
@@ -16,9 +18,13 @@ class Input : public Handle {
virtual bool CanWrite();
virtual bool CanRead();
virtual String GetName();
+ virtual off_t GetSize();
+ virtual time_t GetModif();
protected:
String n;
+ off_t size;
+ time_t date_modif;
};
class Stdin_t : public Handle {