From 9a23fd146be4ba64b0cb720993bdc73a514fecf2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 12:37:46 +0300 Subject: . --- src/exporter.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/exporter.cpp (limited to 'src/exporter.cpp') diff --git a/src/exporter.cpp b/src/exporter.cpp new file mode 100644 index 0000000..3baa99e --- /dev/null +++ b/src/exporter.cpp @@ -0,0 +1,10 @@ +#include "exporter.hpp" + + +void TexoExporter::Put(const ScriptVariable &str) +{ + const int len = str.Length(); + for (int i = 0; i < len; ++i) { + Put(str[i]); + } +} -- cgit v1.2.3