summaryrefslogtreecommitdiff
path: root/src/exporter.hpp
blob: 18a2e5d653bfb2017e70461d6c0f0501b20b6cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TEXO_INCLUDED_EXPORTER
#define TEXO_INCLUDED_EXPORTER

#include <scrvar.hpp>


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Texo Exporter
 * Texo interface for outputting.
 */
class TexoExporter {
public:
    virtual bool Put(char c) = 0;
    virtual bool Put(const ScriptVariable & str);
};


#endif