summaryrefslogtreecommitdiff
path: root/src/exporter.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/exporter.hpp
parentc6419eed96f2832b1de2b94d711552efaa9b172d (diff)
downloadtexo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.tar.xz
texo-ed7a63015c1583d5544ac18bbaccaedc95f3e5e3.zip
[texo] Full rewrite of inner representation.
Diffstat (limited to 'src/exporter.hpp')
-rw-r--r--src/exporter.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/exporter.hpp b/src/exporter.hpp
index 6a0be93..a20f695 100644
--- a/src/exporter.hpp
+++ b/src/exporter.hpp
@@ -4,10 +4,14 @@
#include <scrvar.hpp>
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ * Texo Exporter
+ * Texo interface for outputting.
+ */
class TexoExporter {
public:
- virtual void Put(char c) = 0;
- virtual void Put(const ScriptVariable &str);
+ virtual bool Put(char c) = 0;
+ virtual bool Put(const ScriptVariable &str);
};