]> git.saurik.com Git - apple/icu.git/blame - icuSources/samples/layout/UnicodeReader.h
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / samples / layout / UnicodeReader.h
CommitLineData
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
15class UnicodeReader
16{
17public:
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