From 2c12c0652d2b8c8440e1e908f004826840ed14ab Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 17:33:06 +0300 Subject: [texo] Semi-working. --- src/importer.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/importer.hpp') diff --git a/src/importer.hpp b/src/importer.hpp index 81a3b59..915416c 100644 --- a/src/importer.hpp +++ b/src/importer.hpp @@ -1,5 +1,21 @@ #ifndef TEXO_INCLUDED_IMPORTER #define TEXO_INCLUDED_IMPORTER +#include "producer.hpp" +#include + + +class TexoImporter { +public: + TexoImporter(TexoProducer &producer); + + virtual void Put(char c) = 0; + virtual void Put(const ScriptVariable &str); + virtual void Put(FILE *file); + +protected: + TexoProducer &producer; +}; + #endif -- cgit v1.2.3