summaryrefslogtreecommitdiff
path: root/src/html.hpp
blob: a904d56f3e13b29dec356b44740c7e7d43c11106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TEXO_INCLUDED_HTML
#define TEXO_INCLUDED_HTML

#include "exporter.hpp"
#include "producer.hpp"
#include "importer.hpp"
#include "texo.hpp"


class TexoProducerHTML: public TexoProducer {
public:
    TexoProducerHTML(TexoExporter &exporter);
};


class TexoImporterHTML: public TexoImporter {
public:
    TexoImporterHTML(TexoProducer &producer);
};


#endif