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, 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;
-}