// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2013-2014, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * collationrootelements.h * * created on: 2013mar01 * created by: Markus W. Scherer */ #ifndef __COLLATIONROOTELEMENTS_H__ #define __COLLATIONROOTELEMENTS_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_COLLATION #include "unicode/uobject.h" #include "collation.h" U_NAMESPACE_BEGIN /** * Container and access methods for collation elements and weights * that occur in the root collator. * Needed for finding boundaries for building a tailoring. * * This class takes and returns 16-bit secondary and tertiary weights. */ class U_I18N_API CollationRootElements : public UMemory { … }; U_NAMESPACE_END #endif // !UCONFIG_NO_COLLATION #endif // __COLLATIONROOTELEMENTS_H__