summaryrefslogtreecommitdiff
path: root/src/html.hpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-09-27 18:09:07 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-09-27 18:09:07 +0300
commit2eae362fd3f50325067fa3d7e13db6882df80e76 (patch)
treea6eff5f8f12b990e3d256d4b02fdb86d70d81eac /src/html.hpp
downloadtexo-2eae362fd3f50325067fa3d7e13db6882df80e76.tar
texo-2eae362fd3f50325067fa3d7e13db6882df80e76.tar.xz
texo-2eae362fd3f50325067fa3d7e13db6882df80e76.zip
Texo initial.
Diffstat (limited to 'src/html.hpp')
-rw-r--r--src/html.hpp21
1 files changed, 21 insertions, 0 deletions
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