summaryrefslogtreecommitdiff
path: root/src/plain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plain.cpp')
-rw-r--r--src/plain.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/plain.cpp b/src/plain.cpp
index d8bc1b1..db5c63b 100644
--- a/src/plain.cpp
+++ b/src/plain.cpp
@@ -1,19 +1,6 @@
#include "plain.hpp"
-TexoPlainProducer::TexoPlainProducer(TexoExporter &exporter):
- TexoProducer(exporter)
-{}
-
-void TexoPlainProducer::Put(const Texo &piece)
-{
- switch (piece.type) {
- case Texo::character: exporter.Put(piece.c);
- default: break;
- }
-}
-
-
TexoPlainImporter::TexoPlainImporter(TexoProducer &producer):
TexoImporter(producer), first(true), space(0), newline(false)
{}