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