summaryrefslogtreecommitdiff
path: root/src/html.hpp
blob: c5b2aa4caa8ca0f59a5a54dd53918d4d2a1f8363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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