// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * Copyright (C) 2013-2015, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * collationsettings.h * * created on: 2013feb07 * created by: Markus W. Scherer */ #ifndef __COLLATIONSETTINGS_H__ #define __COLLATIONSETTINGS_H__ #include "unicode/utypes.h" #if !UCONFIG_NO_COLLATION #include "unicode/ucol.h" #include "collation.h" #include "sharedobject.h" #include "umutex.h" U_NAMESPACE_BEGIN struct CollationData; /** * Collation settings/options/attributes. * These are the values that can be changed via API. */ struct U_I18N_API CollationSettings : public SharedObject { … }; U_NAMESPACE_END #endif // !UCONFIG_NO_COLLATION #endif // __COLLATIONSETTINGS_H__