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