summaryrefslogtreecommitdiff
path: root/src/plain.hpp
blob: c88f8ef0fc2f39f83899c92d57470c6c08e20a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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