summaryrefslogtreecommitdiff
path: root/includes/Input.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Input.h')
-rw-r--r--includes/Input.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/Input.h b/includes/Input.h
index e0ad329..51b17c7 100644
--- a/includes/Input.h
+++ b/includes/Input.h
@@ -6,7 +6,8 @@ namespace Balau {
class Input : public SeekableHandle {
public:
- Input(const char * fname) throw (GeneralException);
+ Input(const char * fname);
+ void open() throw (GeneralException);
virtual void close() throw (GeneralException);
virtual ssize_t read(void * buf, size_t count) throw (GeneralException);
virtual bool isClosed();