From 8d4981fcc1c545396df3eac87a3c1a67f3d30038 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Mon, 3 Feb 2020 15:53:56 +0300 Subject: [texo] Abolished dependency on ScriptPP. --- src/importer.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/importer.hpp') diff --git a/src/importer.hpp b/src/importer.hpp index c5a302d..643fe5a 100644 --- a/src/importer.hpp +++ b/src/importer.hpp @@ -12,27 +12,27 @@ */ class TexoImporter { public: - TexoImporter(TexoProducer & producer); + TexoImporter(TexoProducer &producer); ~TexoImporter(); bool End(); + bool Put(char c); - bool Put(const ScriptVariable & s); - bool Put(FILE * f); + bool Put(const char *s); + bool Put(FILE *f); protected: virtual bool TrueEnd(); - virtual bool TruePut(char c) = 0; - virtual bool TruePut(const ScriptVariable & str); - virtual bool TruePut(FILE * file); + virtual bool TruePut(const char *str); + virtual bool TruePut(FILE *file); - TexoProducer & producer; - bool ok; + TexoProducer &producer; + bool ok; }; -- cgit v1.2.3