]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/tolowtrn.h
ICU-62141.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / tolowtrn.h
index 791781aa99c2a95f0fdf5e3f124027f92779afb9..e311431224e5c24cdc374d4a8f412826a72ee1dc 100644 (file)
@@ -1,6 +1,8 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /*
 **********************************************************************
-*   Copyright (C) 2001, International Business Machines
+*   Copyright (C) 2001-2007, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 **********************************************************************
 *   Date        Name        Description
@@ -15,7 +17,7 @@
 #if !UCONFIG_NO_TRANSLITERATION
 
 #include "unicode/translit.h"
-#include "unicode/locid.h"
+#include "casetrn.h"
 
 U_NAMESPACE_BEGIN
 
@@ -24,7 +26,7 @@ U_NAMESPACE_BEGIN
  * case mapping.
  * @author Alan Liu
  */
-class U_I18N_API LowercaseTransliterator : public Transliterator {
+class LowercaseTransliterator : public CaseMapTransliterator {
 
  public:
 
@@ -32,7 +34,7 @@ class U_I18N_API LowercaseTransliterator : public Transliterator {
      * Constructs a transliterator.
      * @param loc the given locale.
      */
-    LowercaseTransliterator(const Locale& loc = Locale::getDefault());
+    LowercaseTransliterator();
 
     /**
      * Destructor.
@@ -44,57 +46,27 @@ class U_I18N_API LowercaseTransliterator : public Transliterator {
      */
     LowercaseTransliterator(const LowercaseTransliterator&);
 
-    /**
-     * Assignment operator.
-     */
-    LowercaseTransliterator& operator=(const LowercaseTransliterator&);
-
     /**
      * Transliterator API.
      * @return a copy of the object.
      */
-    Transliterator* clone(void) const;
+    virtual Transliterator* clone(void) const;
 
     /**
      * ICU "poor man's RTTI", returns a UClassID for the actual class.
-     *
-     * @draft ICU 2.2
      */
-    virtual inline UClassID getDynamicClassID() const { return getStaticClassID(); }
+    virtual UClassID getDynamicClassID() const;
 
     /**
      * ICU "poor man's RTTI", returns a UClassID for this class.
-     *
-     * @draft ICU 2.2
      */
-    static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }
-
- protected:
+    U_I18N_API static UClassID U_EXPORT2 getStaticClassID();
+private:
 
     /**
-     * Implements {@link Transliterator#handleTransliterate}.
-     * @param text        the buffer holding transliterated and
-     *                    untransliterated text
-     * @param offset      the start and limit of the text, the position
-     *                    of the cursor, and the start and limit of transliteration.
-     * @param incremental if true, assume more text may be coming after
-     *                    pos.contextLimit.  Otherwise, assume the text is complete.
-     */
-    virtual void handleTransliterate(Replaceable& text,
-                                     UTransPosition& offsets, 
-                                     UBool isIncremental) const;
-
- private:
-
-    Locale loc;
-    UChar* buffer;
-    static const char _ID[];
-
-    /**
-     * The address of this static class variable serves as this class's ID
-     * for ICU "poor man's RTTI".
+     * Assignment operator.
      */
-    static const char fgClassID;
+    LowercaseTransliterator& operator=(const LowercaseTransliterator&);
 };
 
 U_NAMESPACE_END