summaryrefslogtreecommitdiff
path: root/src/str.cpp
blob: 463a8dcb21aa5664ac17822baf241b8692f6e42e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "str.hpp"


TexoExporterString::TexoExporterString(ScriptVariable &str): str(str)
{}

void TexoExporterString::Put(char c)
{
    str += c;
}

void TexoExporterString::Put(const ScriptVariable &addon)
{
    str += addon;
}