// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2012-2014, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * collationdatabuilder.h * * created on: 2012apr01 * created by: Markus W. Scherer */ #ifndef __COLLATIONDATABUILDER_H__ #define __COLLATIONDATABUILDER_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_COLLATION #include "unicode/uniset.h" #include "unicode/unistr.h" #include "unicode/uversion.h" #include "collation.h" #include "collationdata.h" #include "collationsettings.h" #include "normalizer2impl.h" #include "utrie2.h" #include "uvectr32.h" #include "uvectr64.h" #include "uvector.h" U_NAMESPACE_BEGIN struct ConditionalCE32; class CollationFastLatinBuilder; class CopyHelper; class DataBuilderCollationIterator; class UCharsTrieBuilder; /** * Low-level CollationData builder. * Takes (character, CE) pairs and builds them into runtime data structures. * Supports characters with context prefixes and contraction suffixes. */ class U_I18N_API CollationDataBuilder : public UObject { … }; U_NAMESPACE_END #endif // !UCONFIG_NO_COLLATION #endif // __COLLATIONDATABUILDER_H__