From 77f503bd6db90bd882e389ea977f02a2773e14f2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 4 Oct 2019 16:35:57 +0300 Subject: Semi-working html. =) --- src/texo.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/texo.cpp') diff --git a/src/texo.cpp b/src/texo.cpp index 03b31e7..3610184 100644 --- a/src/texo.cpp +++ b/src/texo.cpp @@ -23,6 +23,16 @@ void TexoExporter::PutStr(const char *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) {} -- cgit v1.2.3