summaryrefslogtreecommitdiff
path: root/src/str.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/str.cpp
parentc6419eed96f2832b1de2b94d711552efaa9b172d (diff)
downloadtexo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar.xz
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.zip
[texo] Full rewrite of inner representation.
Diffstat (limited to 'src/str.cpp')
-rw-r--r--src/str.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/str.cpp b/src/str.cpp
deleted file mode 100644
index 463a8dc..0000000
--- a/src/str.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "str.hpp"
-
-
-TexoExporterString::TexoExporterString(ScriptVariable &str): str(str)
-{}
-
-void TexoExporterString::Put(char c)
-{
- str += c;
-}
-
-void TexoExporterString::Put(const ScriptVariable &addon)
-{
- str += addon;
-}