From 9a23fd146be4ba64b0cb720993bdc73a514fecf2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 12:37:46 +0300 Subject: . --- src/str.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/str.hpp (limited to 'src/str.hpp') diff --git a/src/str.hpp b/src/str.hpp new file mode 100644 index 0000000..c7cecfc --- /dev/null +++ b/src/str.hpp @@ -0,0 +1,19 @@ +#ifndef TEXO_INCLUDED_STR +#define TEXO_INCLUDED_STR + +#include "exporter.hpp" + + +class TexoExporterString: public TexoExporter { +public: + TexoExporterString(ScriptVariable &str); + + void Put(char c); + void Put(const ScriptVariable &addon); + +private: + ScriptVariable &str; +}; + + +#endif -- cgit v1.2.3