8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-25 02:03:03 +01:00
firebird-mirror/extern/icu/source/samples/layout/UnicodeReader.h

33 lines
690 B
C
Raw Normal View History

2005-05-28 00:45:31 +02:00
/*
******************************************************************************
* Copyright (C) 1998-2001, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
#ifndef __UNICODEREADER_H
#define __UNICODEREADER_H
#include "unicode/utypes.h"
#include "GUISupport.h"
class UnicodeReader
{
public:
UnicodeReader()
{
// nothing...
}
~UnicodeReader()
{
// nothing, too
}
static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
};
#endif