mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:43:04 +01:00
22 lines
331 B
C
22 lines
331 B
C
|
/*
|
||
|
*
|
||
|
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __CANONSHAPING_H
|
||
|
#define __CANONSHAPING_H
|
||
|
|
||
|
#include "LETypes.h"
|
||
|
|
||
|
U_NAMESPACE_BEGIN
|
||
|
|
||
|
class CanonShaping /* not : public UObject because all members are static */
|
||
|
{
|
||
|
public:
|
||
|
static const le_uint8 glyphSubstitutionTable[];
|
||
|
};
|
||
|
|
||
|
U_NAMESPACE_END
|
||
|
#endif
|