summaryrefslogtreecommitdiff
path: root/src/file.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/file.hpp')
-rw-r--r--src/file.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/file.hpp b/src/file.hpp
new file mode 100644
index 0000000..68e31cd
--- /dev/null
+++ b/src/file.hpp
@@ -0,0 +1,16 @@
+#ifndef TEXO_INCLUDED_FILE
+#define TEXO_INCLUDED_FILE
+
+#include "texo.hpp"
+
+
+class TexoFileExporter: public TexoExporter {
+public:
+ TexoFileExporter(FILE *file);
+ void Put(const char c);
+private:
+ FILE *file;
+};
+
+
+#endif