summaryrefslogtreecommitdiff
path: root/src/plain.hpp
blob: 8c74bce3562b951fb498f9c2cbe2377f73421a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TEXO_INCLUDED_PLAIN
#define TEXO_INCLUDED_PLAIN

#include "texo.hpp"


class TexoPlainImporter: public TexoImporter {
public:
    TexoPlainImporter(TexoProducer &producer);
    void Put(const char c);
private:
    int  space;
    int  newline;
    bool first;
};


#endif