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