summaryrefslogtreecommitdiff
path: root/src/exporter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/exporter.hpp')
-rw-r--r--src/exporter.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/exporter.hpp b/src/exporter.hpp
new file mode 100644
index 0000000..6a0be93
--- /dev/null
+++ b/src/exporter.hpp
@@ -0,0 +1,14 @@
+#ifndef TEXO_INCLUDED_EXPORTER
+#define TEXO_INCLUDED_EXPORTER
+
+#include <scrvar.hpp>
+
+
+class TexoExporter {
+public:
+ virtual void Put(char c) = 0;
+ virtual void Put(const ScriptVariable &str);
+};
+
+
+#endif