X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/374ca955a76ecab1204ca8bfa63ff9238d998416..HEAD:/icuSources/i18n/toupptrn.h diff --git a/icuSources/i18n/toupptrn.h b/icuSources/i18n/toupptrn.h index d1796832..e96ca8f0 100644 --- a/icuSources/i18n/toupptrn.h +++ b/icuSources/i18n/toupptrn.h @@ -1,6 +1,8 @@ +// © 2016 and later: Unicode, Inc. and others. +// License & terms of use: http://www.unicode.org/copyright.html /* ********************************************************************** -* Copyright (C) 2001-2004, International Business Machines +* Copyright (C) 2001-2007, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * Date Name Description @@ -15,7 +17,6 @@ #if !UCONFIG_NO_TRANSLITERATION #include "unicode/translit.h" -#include "unicode/locid.h" #include "casetrn.h" U_NAMESPACE_BEGIN @@ -25,7 +26,7 @@ U_NAMESPACE_BEGIN * case mapping. * @author Alan Liu */ -class U_I18N_API UppercaseTransliterator : public CaseMapTransliterator { +class UppercaseTransliterator : public CaseMapTransliterator { public: @@ -33,7 +34,7 @@ class U_I18N_API UppercaseTransliterator : public CaseMapTransliterator { * Constructs a transliterator. * @param loc the given locale. */ - UppercaseTransliterator(const Locale& loc = Locale::getDefault()); + UppercaseTransliterator(); /** * Destructor. @@ -45,30 +46,27 @@ class U_I18N_API UppercaseTransliterator : public CaseMapTransliterator { */ UppercaseTransliterator(const UppercaseTransliterator&); - /** - * Assignment operator. - */ - UppercaseTransliterator& operator=(const UppercaseTransliterator&); - /** * Transliterator API. * @return a copy of the object. */ - virtual Transliterator* clone(void) const; + virtual UppercaseTransliterator* clone() const; /** * ICU "poor man's RTTI", returns a UClassID for the actual class. - * - * @draft ICU 2.2 */ virtual UClassID getDynamicClassID() const; /** * ICU "poor man's RTTI", returns a UClassID for this class. - * - * @draft ICU 2.2 */ - static UClassID U_EXPORT2 getStaticClassID(); + U_I18N_API static UClassID U_EXPORT2 getStaticClassID(); + +private: + /** + * Assignment operator. + */ + UppercaseTransliterator& operator=(const UppercaseTransliterator&); }; U_NAMESPACE_END