summaryrefslogtreecommitdiff
path: root/src/lines.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lines.hpp')
-rw-r--r--src/lines.hpp25
1 files changed, 18 insertions, 7 deletions
diff --git a/src/lines.hpp b/src/lines.hpp
index d6ce555..7049919 100644
--- a/src/lines.hpp
+++ b/src/lines.hpp
@@ -6,29 +6,40 @@
#include "importer.hpp"
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ * Texo Lines Producer
+ */
class TexoProducerLines: public TexoProducer {
public:
TexoProducerLines(TexoExporter &exporter);
- void End();
- void Put(const Texo &piece);
+ bool End();
+
+
+ bool Put(char c);
+
+
+ bool Paragraph();
+ bool Quote();
- void Put(const TexoParagraph &piece);
- void Put(const TexoQuote &piece);
private:
bool newline;
};
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ * Texo Lines Importer
+ */
class TexoImporterLines: public TexoImporter {
public:
TexoImporterLines(TexoProducer &producer);
- void Put(char c);
- void Put(const ScriptVariable &str);
- void Put(FILE *file);
+
+protected:
+ bool TruePut(char c);
+
private:
bool newline;