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

#include "exporter.hpp"


class TexoExporterString: public TexoExporter {
public:
    TexoExporterString(ScriptVariable &str);

    void Put(char c);
    void Put(const ScriptVariable &addon);

private:
    ScriptVariable &str;
};


#endif