// © 2016 and later: Unicode, Inc. and others.1// License & terms of use: http://www.unicode.org/copyright.html2/*3*******************************************************************************4* Copyright (C) 1996-2014, International Business Machines5* Corporation and others. All Rights Reserved.6*******************************************************************************7* collationcompare.h8*9* created on: 2012feb14 with new and old collation code10* created by: Markus W. Scherer11*/1213#ifndef __COLLATIONCOMPARE_H__14#define __COLLATIONCOMPARE_H__1516#include "unicode/utypes.h"1718#if !UCONFIG_NO_COLLATION1920#include "unicode/ucol.h"2122U_NAMESPACE_BEGIN2324class CollationIterator;25struct CollationSettings;2627class U_I18N_API CollationCompare /* not : public UObject because all methods are static */ {28public:29static UCollationResult compareUpToQuaternary(CollationIterator &left, CollationIterator &right,30const CollationSettings &settings,31UErrorCode &errorCode);32};3334U_NAMESPACE_END3536#endif // !UCONFIG_NO_COLLATION37#endif // __COLLATIONCOMPARE_H__383940