summaryrefslogtreecommitdiff
path: root/src/str.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/str.hpp')
-rw-r--r--src/str.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/str.hpp b/src/str.hpp
new file mode 100644
index 0000000..c7cecfc
--- /dev/null
+++ b/src/str.hpp
@@ -0,0 +1,19 @@
+#ifndef TEXO_INCLUDED_STR
+#define TEXO_INCLUDED_STR
+
+#include "exporter.hpp"
+
+
+class TexoExporterString: public TexoExporter {
+public:
+ TexoExporterString(ScriptVariable &str);
+
+ void Put(char c);
+ void Put(const ScriptVariable &addon);
+
+private:
+ ScriptVariable &str;
+};
+
+
+#endif