summaryrefslogtreecommitdiff
path: root/src/exporter.hpp
blob: a20f69585beeef7cc41f23bbc610602b76bf3e80 (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