summaryrefslogtreecommitdiff
path: root/src/str.hpp
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.hpp
parentc6419eed96f2832b1de2b94d711552efaa9b172d (diff)
downloadtexo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar.xz
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.zip
[texo] Full rewrite of inner representation.
Diffstat (limited to 'src/str.hpp')
-rw-r--r--src/str.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/str.hpp b/src/str.hpp
deleted file mode 100644
index c7cecfc..0000000
--- a/src/str.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#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