1/*
2 ******************************************************************************
3 * Copyright (C) 2016 and later: Unicode, Inc. and others.                    *
4 * License & terms of use: http://www.unicode.org/copyright.html#License      *
5 ******************************************************************************
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
37