#ifndef TEXO_INCLUDED_PLAIN #define TEXO_INCLUDED_PLAIN #include "texo.hpp" class TexoPlainProducer: public TexoProducer { public: TexoPlainProducer(TexoExporter &exporter); void Put(const Texo &piece); }; class TexoPlainImporter: public TexoImporter { public: TexoPlainImporter(TexoProducer &producer); void Put(const char c); private: int space; int newline; bool first; }; #endif