summaryrefslogtreecommitdiff
path: root/src/exporter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/exporter.hpp')
-rw-r--r--src/exporter.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/exporter.hpp b/src/exporter.hpp
new file mode 100644
index 0000000..b28ad6c
--- /dev/null
+++ b/src/exporter.hpp
@@ -0,0 +1,12 @@
+#ifndef XIFT_INCLUDED_EXPORTER
+#define XIFT_INCLUDED_EXPORTER
+
+
+class XiftExporter {
+public:
+ virtual void Put(char c) = 0;
+ virtual void Put(const char *str);
+};
+
+
+#endif