summaryrefslogtreecommitdiff
path: root/src/texo.cpp
blob: 1a2974a9cdaa3c64a280b0f056b06f64e64a44ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "texo.hpp"


Texo::Texo(Type type): type(type), c(0)  {}

Texo::Texo(const char c): type(character), c(c)  {}


void TexoExporter::PutStr(const char *str)
{
    if (str) {
        while (*str) {
            Put(*str);
            ++str;
        }
    }
}


TexoProducer::TexoProducer(TexoExporter &exporter): exporter(exporter)  {}


TexoImporter::TexoImporter(TexoProducer &producer): producer(producer)  {}

void TexoImporter::PutStr(const char *str)
{
    if (str) {
        while (*str) {
            Put(*str);
            ++str;
        }
        Put(0);
    }
}

void TexoImporter::PutFile(FILE *file)
{
    if (file) {
        for (int c = fgetc(file); c != EOF; c = fgetc(file)) {
            Put(c);
        }
        Put(0);
    }
}