From 9a23fd146be4ba64b0cb720993bdc73a514fecf2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 12:37:46 +0300 Subject: . --- src/plain.hpp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'src/plain.hpp') diff --git a/src/plain.hpp b/src/plain.hpp index c88f8ef..d1a9efb 100644 --- a/src/plain.hpp +++ b/src/plain.hpp @@ -1,18 +1,21 @@ #ifndef TEXO_INCLUDED_PLAIN #define TEXO_INCLUDED_PLAIN +#include "exporter.hpp" +#include "producer.hpp" +#include "importer.hpp" #include "texo.hpp" -class TexoPlainImporter: public TexoImporter { +class TexoProducerPlain: public TexoProducer { public: - TexoPlainImporter(TexoProducer &producer); - void Put(const char c); + TexoProducerPlain(TexoExporter &exporter); +}; + -private: - int space; - int newline; - bool first; +class TexoImporterPlain: public TexoImporter { +public: + TexoImporterPlain(TexoProducer &producer); }; -- cgit v1.2.3