]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | ****************************************************************************** | |
3 | * Copyright (C) 1998-2001, International Business Machines Corporation and * | |
4 | * others. All Rights Reserved. * | |
5 | ****************************************************************************** | |
6 | */ | |
7 | ||
8 | #ifndef __UNICODEREADER_H | |
9 | #define __UNICODEREADER_H | |
10 | ||
11 | #include "unicode/utypes.h" | |
12 | ||
13 | #include "GUISupport.h" | |
14 | ||
15 | class UnicodeReader | |
16 | { | |
17 | public: | |
18 | UnicodeReader() | |
19 | { | |
20 | // nothing... | |
21 | } | |
22 | ||
23 | ~UnicodeReader() | |
24 | { | |
25 | // nothing, too | |
26 | } | |
27 | ||
28 | static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount); | |
29 | }; | |
30 | ||
31 | #endif | |
32 |