]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/remtrans.h
ICU-6.2.14.tar.gz
[apple/icu.git] / icuSources / i18n / remtrans.h
index 78add4b684d8b4e5e12e9cc9652a90b7fc75df54..d63cd13eae347f856e806bfa8471f2ce0bb1693b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 **********************************************************************
-*   Copyright (c) 2001, International Business Machines
+*   Copyright (c) 2001-2004, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 **********************************************************************
 *   Date        Name        Description
@@ -45,7 +45,7 @@ public:
      * Transliterator API.
      * @return A copy of the object.
      */
-    Transliterator* clone(void) const;
+    virtual Transliterator* clone(void) const;
 
     /**
      * Implements {@link Transliterator#handleTransliterate}.
@@ -64,14 +64,14 @@ public:
      *
      * @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; }
+    static UClassID U_EXPORT2 getStaticClassID();
 
  private:
 
@@ -79,12 +79,6 @@ public:
      * Factory method
      */
     static Transliterator* _create(const UnicodeString& ID, Token context);
-
-    /**
-     * The address of this static class variable serves as this class's ID
-     * for ICU "poor man's RTTI".
-     */
-    static const char fgClassID;
 };
 
 U_NAMESPACE_END