From 9a23fd146be4ba64b0cb720993bdc73a514fecf2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 12:37:46 +0300 Subject: . --- src/str.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/str.cpp (limited to 'src/str.cpp') 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; +} -- cgit v1.2.3