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

#include <scrvar.hpp>


class TexoExporter {
public:
    virtual void Put(char c) = 0;
    virtual void Put(const ScriptVariable &str);
};


#endif