summaryrefslogtreecommitdiff
path: root/src/exporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/exporter.cpp')
-rw-r--r--src/exporter.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/exporter.cpp b/src/exporter.cpp
new file mode 100644
index 0000000..bd414a7
--- /dev/null
+++ b/src/exporter.cpp
@@ -0,0 +1,10 @@
+#include "exporter.hpp"
+
+
+void XiftExporter::Put(const char *str)
+{
+ while (*str) {
+ Put(*str);
+ ++str;
+ }
+}