summaryrefslogtreecommitdiff
path: root/src/texo.cpp
blob: 03b31e779c426eef3ec580e7da00d9c7f338a1b0 (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
#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)  {}


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