summaryrefslogtreecommitdiff
path: root/src/script.cpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-08 19:49:40 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-08 19:49:40 +0300
commited7a63015c1583d5544ac18bbaccaedc95f3e5e3 (patch)
tree9648d5a74bae9cbd90670a8bfa0af47189e4536f /src/script.cpp
parentc6419eed96f2832b1de2b94d711552efaa9b172d (diff)
downloadtexo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar.xz
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.zip
[texo] Full rewrite of inner representation.
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp
new file mode 100644
index 0000000..d335ff0
--- /dev/null
+++ b/src/script.cpp
@@ -0,0 +1,21 @@
+#include "script.hpp"
+
+
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ * Texo String Exporter
+ */
+TexoExporterString::TexoExporterString(ScriptVariable &str): str(str)
+{}
+
+
+bool TexoExporterString::Put(char c)
+{
+ str += c;
+ return true;
+}
+
+bool TexoExporterString::Put(const ScriptVariable &addon)
+{
+ str += addon;
+ return true;
+}