From 2eae362fd3f50325067fa3d7e13db6882df80e76 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 27 Sep 2019 18:09:07 +0300 Subject: Texo initial. --- src/html.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/html.hpp (limited to 'src/html.hpp') diff --git a/src/html.hpp b/src/html.hpp new file mode 100644 index 0000000..c5b2aa4 --- /dev/null +++ b/src/html.hpp @@ -0,0 +1,21 @@ +#ifndef TEXO_INCLUDED_HTML +#define TEXO_INCLUDED_HTML + +#include "texo.hpp" + + +class TexoHTMLProducer: public TexoProducer { +public: + TexoHTMLProducer(TexoExporter &exporter); + void Put(const Texo &piece); +}; + + +class TexoHTMLImporter: public TexoImporter { +public: + TexoHTMLImporter(TexoProducer &producer); + void Put(const char c); +}; + + +#endif -- cgit v1.2.3