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


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Texo Exporter
 */
bool TexoExporter::Put(const ScriptVariable &str)
{
    bool ok = true;
    const int len = str.Length();
    for (int i = 0; ok && i < len; ++i) {
        ok = Put(str[i]);
    }
    return ok;
}