summaryrefslogtreecommitdiff
path: root/src/texo.cpp
blob: 3610184a2438d2ab252e9d4c2470ea0f9e7b3c00 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include "texo.hpp"


Texo::Texo(Type type):
    type(type), c(0), image_src(0), image_alt(0), link_url(0)
{}

Texo::Texo(const char c):
    type(character), c(c), image_src(0), image_alt(0), link_url(0)
{}


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


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

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


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);
    }
}