]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/layout/LEGlyphFilter.h
ICU-551.30.tar.gz
[apple/icu.git] / icuSources / layout / LEGlyphFilter.h
index 04a844ef9dbe4c254203b2ceec40fec91ff98704..6dcfa7d27764a4699752d44a6294a99dcbb3952a 100644 (file)
@@ -1,7 +1,6 @@
 /*
- * @(#)LEGlyphFilter.h 1.3 00/03/15
  *
- * (C) Copyright IBM Corp. 1998, 1999, 2000, 2001, 2002 - All Rights Reserved
+ * (C) Copyright IBM Corp. 1998-2011 - All Rights Reserved
  *
  */
 
@@ -12,6 +11,7 @@
 
 U_NAMESPACE_BEGIN
 
+#ifndef U_HIDE_INTERNAL_API
 /**
  * This is a helper class that is used to
  * recognize a set of glyph indices.
@@ -22,9 +22,9 @@ class LEGlyphFilter /* not : public UObject because this is an interface/mixin c
 public:
     /**
      * Destructor.
-     * @draft ICU 2.4
+     * @internal
      */
-    virtual inline ~LEGlyphFilter() {};
+    virtual ~LEGlyphFilter();
 
     /**
      * This method is used to test a particular
@@ -33,12 +33,13 @@ public:
      *
      * @param glyph - the glyph index to be tested
      *
-     * @return true if the glyph index is in the set.
+     * @return TRUE if the glyph index is in the set.
      *
      * @internal
      */
     virtual le_bool accept(LEGlyphID glyph) const = 0;
 };
+#endif  /* U_HIDE_INTERNAL_API */
 
 U_NAMESPACE_END
 #endif