summaryrefslogtreecommitdiff
path: root/src/script.cpp
blob: d335ff041d4269d3a59aef6ebac56be4e26502dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "script.hpp"


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Texo String Exporter
 */
TexoExporterString::TexoExporterString(ScriptVariable &str): str(str)
{}


bool TexoExporterString::Put(char c)
{
    str += c;
    return true;
}

bool TexoExporterString::Put(const ScriptVariable &addon)
{
    str += addon;
    return true;
}