summaryrefslogtreecommitdiff
path: root/src/exporter.cpp
blob: 6a190ee0418cb591b5aa829a2d67304db88783f4 (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;
}