From ed7a63015c1583d5544ac18bbaccaedc95f3e5e3 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 8 Nov 2019 19:49:40 +0300 Subject: [texo] Full rewrite of inner representation. --- src/exporter.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/exporter.hpp') 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 +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * 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); }; -- cgit v1.2.3