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/file.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/file.hpp') diff --git a/src/file.hpp b/src/file.hpp index 1cfea0b..5f8adb6 100644 --- a/src/file.hpp +++ b/src/file.hpp @@ -5,12 +5,18 @@ #include +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Texo File Exporter + * Simple utility class to make output into FILE *variable. + */ class TexoExporterFile: public TexoExporter { public: TexoExporterFile(FILE *file); - void Put(char c); - void Put(const ScriptVariable &str); + + bool Put(char c); + bool Put(const ScriptVariable &str); + private: FILE *file; -- cgit v1.2.3