File: convkit.h

package info (click to toggle)
swath 0.3.0.cvs20030404
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,564 kB
  • ctags: 545
  • sloc: sh: 6,926; cpp: 3,643; makefile: 151
file content (25 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// convkit.h - Text Converter Kit
// Created: 19 Jan 1999
// Author:  Theppitak Karoonboonyanan <thep@links.nectec.or.th>
//

#ifndef CONVKIT_INC
#define CONVKIT_INC

#include "unichar.h"

class TextReader {
public:
    virtual bool Read(unichar& c) = 0;
};

class TextWriter {
public:
    virtual bool Write(unichar c) = 0;
};

void TransferText(TextReader* pReader, TextWriter* pWriter);

#endif  // CONVKIT