// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2010-2015, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * collation.h * * created on: 2010oct27 * created by: Markus W. Scherer */ #ifndef __COLLATION_H__ #define __COLLATION_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_COLLATION U_NAMESPACE_BEGIN /** * Collation v2 basic definitions and static helper functions. * * Data structures except for expansion tables store 32-bit CEs which are * either specials (see tags below) or are compact forms of 64-bit CEs. */ class U_I18N_API Collation { … }; U_NAMESPACE_END #endif // !UCONFIG_NO_COLLATION #endif // __COLLATION_H__