summaryrefslogtreecommitdiff
path: root/src/str.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/str.cpp')
-rw-r--r--src/str.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/str.cpp b/src/str.cpp
new file mode 100644
index 0000000..463a8dc
--- /dev/null
+++ b/src/str.cpp
@@ -0,0 +1,15 @@
+#include "str.hpp"
+
+
+TexoExporterString::TexoExporterString(ScriptVariable &str): str(str)
+{}
+
+void TexoExporterString::Put(char c)
+{
+ str += c;
+}
+
+void TexoExporterString::Put(const ScriptVariable &addon)
+{
+ str += addon;
+}