unifunct.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. **********************************************************************
  3. * Copyright (c) 2002-2005, International Business Machines Corporation
  4. * and others. All Rights Reserved.
  5. **********************************************************************
  6. * Date Name Description
  7. * 01/14/2002 aliu Creation.
  8. **********************************************************************
  9. */
  10. #ifndef UNIFUNCT_H
  11. #define UNIFUNCT_H
  12. #include "unicode/utypes.h"
  13. #include "unicode/uobject.h"
  14. /**
  15. * \file
  16. * \brief C++ API: Unicode Functor
  17. */
  18. U_NAMESPACE_BEGIN
  19. class UnicodeMatcher;
  20. class UnicodeReplacer;
  21. class TransliterationRuleData;
  22. /**
  23. * <code>UnicodeFunctor</code> is an abstract base class for objects
  24. * that perform match and/or replace operations on Unicode strings.
  25. * @author Alan Liu
  26. * @stable ICU 2.4
  27. */
  28. class U_COMMON_API UnicodeFunctor : public UObject {
  29. public:
  30. /**
  31. * Destructor
  32. * @stable ICU 2.4
  33. */
  34. virtual ~UnicodeFunctor();
  35. /**
  36. * Return a copy of this object. All UnicodeFunctor objects
  37. * have to support cloning in order to allow classes using
  38. * UnicodeFunctor to implement cloning.
  39. * @stable ICU 2.4
  40. */
  41. virtual UnicodeFunctor* clone() const = 0;
  42. /**
  43. * Cast 'this' to a UnicodeMatcher* pointer and return the
  44. * pointer, or null if this is not a UnicodeMatcher*. Subclasses
  45. * that mix in UnicodeMatcher as a base class must override this.
  46. * This protocol is required because a pointer to a UnicodeFunctor
  47. * cannot be cast to a pointer to a UnicodeMatcher, since
  48. * UnicodeMatcher is a mixin that does not derive from
  49. * UnicodeFunctor.
  50. * @stable ICU 2.4
  51. */
  52. virtual UnicodeMatcher* toMatcher() const;
  53. /**
  54. * Cast 'this' to a UnicodeReplacer* pointer and return the
  55. * pointer, or null if this is not a UnicodeReplacer*. Subclasses
  56. * that mix in UnicodeReplacer as a base class must override this.
  57. * This protocol is required because a pointer to a UnicodeFunctor
  58. * cannot be cast to a pointer to a UnicodeReplacer, since
  59. * UnicodeReplacer is a mixin that does not derive from
  60. * UnicodeFunctor.
  61. * @stable ICU 2.4
  62. */
  63. virtual UnicodeReplacer* toReplacer() const;
  64. /**
  65. * Return the class ID for this class. This is useful only for
  66. * comparing to a return value from getDynamicClassID().
  67. * @return The class ID for all objects of this class.
  68. * @stable ICU 2.0
  69. */
  70. static UClassID U_EXPORT2 getStaticClassID(void);
  71. /**
  72. * Returns a unique class ID <b>polymorphically</b>. This method
  73. * is to implement a simple version of RTTI, since not all C++
  74. * compilers support genuine RTTI. Polymorphic operator==() and
  75. * clone() methods call this method.
  76. *
  77. * <p>Concrete subclasses of UnicodeFunctor should use the macro
  78. * UOBJECT_DEFINE_RTTI_IMPLEMENTATION from uobject.h to
  79. * provide definitios getStaticClassID and getDynamicClassID.
  80. *
  81. * @return The class ID for this object. All objects of a given
  82. * class have the same class ID. Objects of other classes have
  83. * different class IDs.
  84. * @stable ICU 2.4
  85. */
  86. virtual UClassID getDynamicClassID(void) const = 0;
  87. /**
  88. * Set the data object associated with this functor. The data
  89. * object provides context for functor-to-standin mapping. This
  90. * method is required when assigning a functor to a different data
  91. * object. This function MAY GO AWAY later if the architecture is
  92. * changed to pass data object pointers through the API.
  93. * @internal ICU 2.1
  94. */
  95. virtual void setData(const TransliterationRuleData*) = 0;
  96. protected:
  97. /**
  98. * Since this class has pure virtual functions,
  99. * a constructor can't be used.
  100. * @stable ICU 2.0
  101. */
  102. /*UnicodeFunctor();*/
  103. };
  104. /*inline UnicodeFunctor::UnicodeFunctor() {}*/
  105. U_NAMESPACE_END
  106. #endif