summaryrefslogtreecommitdiff
path: root/includes/Output.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-09 17:14:00 +0100
committerPixel <pixel@nobis-crew.org>2011-11-09 17:14:00 +0100
commitee83336050553a2dbd64c27b8e384139c7ccec9a (patch)
treeb2c7b58364bfbafdecc0f9747ea2aa237fd63cbf /includes/Output.h
parentfa67300f537808f7e3fa3bb501f1f268d520073b (diff)
Adding 'Output' object
Diffstat (limited to 'includes/Output.h')
-rw-r--r--includes/Output.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/includes/Output.h b/includes/Output.h
new file mode 100644
index 0000000..59d9d67
--- /dev/null
+++ b/includes/Output.h
@@ -0,0 +1,26 @@
+#pragma once
+
+#include <Handle.h>
+
+namespace Balau {
+
+class Output : public SeekableHandle {
+ public:
+ Output(const char * fname, 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();
+ virtual bool canWrite();
+ virtual const char * getName();
+ virtual off_t getSize();
+ virtual time_t getMTime();
+ const char * getFName() { return m_fname.to_charp(); }
+ private:
+ int m_fd;
+ String m_name;
+ String m_fname;
+ off_t m_size;
+ time_t m_mtime;
+};
+
+};