// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * * Copyright (C) 1999-2014, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* * file name: collationweights.h * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * created on: 2001mar08 as ucol_wgt.h * created by: Markus W. Scherer */ #ifndef __COLLATIONWEIGHTS_H__ #define __COLLATIONWEIGHTS_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_COLLATION #include "unicode/uobject.h" U_NAMESPACE_BEGIN /** * Allocates n collation element weights between two exclusive limits. * Used only internally by the collation tailoring builder. */ class U_I18N_API CollationWeights : public UMemory { … }; U_NAMESPACE_END #endif // !UCONFIG_NO_COLLATION #endif // __COLLATIONWEIGHTS_H__