// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2010-2014, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * utf16collationiterator.h * * created on: 2010oct27 * created by: Markus W. Scherer */ #ifndef __UTF16COLLATIONITERATOR_H__ #define __UTF16COLLATIONITERATOR_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_COLLATION #include "cmemory.h" #include "collation.h" #include "collationdata.h" #include "collationiterator.h" #include "normalizer2impl.h" U_NAMESPACE_BEGIN /** * UTF-16 collation element and character iterator. * Handles normalized UTF-16 text inline, with length or NUL-terminated. * Unnormalized text is handled by a subclass. */ class U_I18N_API UTF16CollationIterator : public CollationIterator { … }; /** * Incrementally checks the input text for FCD and normalizes where necessary. */ class U_I18N_API FCDUTF16CollationIterator : public UTF16CollationIterator { … }; U_NAMESPACE_END #endif // !UCONFIG_NO_COLLATION #endif // __UTF16COLLATIONITERATOR_H__