summaryrefslogtreecommitdiff
path: root/includes/Input.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-10-11 00:47:18 -0700
committerPixel <pixel@nobis-crew.org>2011-10-11 00:47:18 -0700
commitd2252afcd74af0248c6141c8086d03e12a0a316f (patch)
tree43ba0cca065d205fa1b9fa5810de1481948aaad5 /includes/Input.h
parent67b6a78b347ab7ba269a52d772e79d12444f6e96 (diff)
Input class seems to be done.
Diffstat (limited to 'includes/Input.h')
-rw-r--r--includes/Input.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/Input.h b/includes/Input.h
index 71e6845..518db39 100644
--- a/includes/Input.h
+++ b/includes/Input.h
@@ -8,6 +8,7 @@ class Input : public SeekableHandle {
public:
Input(const char * fname) throw (GeneralException);
virtual void close() throw (GeneralException);
+ virtual ssize_t read(void * buf, size_t count) throw (GeneralException);
virtual bool isClosed();
virtual bool canRead();
virtual const char * getName();