]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/nptrans.h
ICU-59117.0.1.tar.gz
[apple/icu.git] / icuSources / test / intltest / nptrans.h
index 86939cf42ba4637d43119745ae21ceca79391ed5..8cbc806d8f4a5bd70d04faf5d12f266b66e08742 100644 (file)
@@ -1,12 +1,14 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /*
  *******************************************************************************
  *
- *   Copyright (C) 2003, International Business Machines
+ *   Copyright (C) 2003-2011, International Business Machines
  *   Corporation and others.  All Rights Reserved.
  *
  *******************************************************************************
  *   file name:  nptrans.h
- *   encoding:   US-ASCII
+ *   encoding:   UTF-8
  *   tab size:   8 (not used)
  *   indentation:4
  *
@@ -26,6 +28,7 @@
 #include "unicode/ures.h"
 #include "unicode/translit.h"
 
+#include "intltest.h"
 
 
 #define ASCII_SPACE 0x0020
@@ -49,18 +52,14 @@ public :
 
 
     inline UBool isProhibited(UChar32 ch);
-    
+
     /**
      * ICU "poor man's RTTI", returns a UClassID for the actual class.
-     *
-     * @draft ICU 2.6
      */
     inline UClassID getDynamicClassID() const { return getStaticClassID(); }
 
     /**
      * ICU "poor man's RTTI", returns a UClassID for this class.
-     *
-     * @draft ICU 2.6
      */
     static inline UClassID getStaticClassID() { return (UClassID)&fgClassID; }
 
@@ -81,7 +80,6 @@ public :
      * @param status        ICU error code in/out parameter.
      *                      Must fulfill U_SUCCESS before the function call.
      * @return The number of UChars in the destination buffer
-     *
      */
     int32_t map(const UChar* src, int32_t srcLength, 
                         UChar* dest, int32_t destCapacity, 
@@ -114,14 +112,12 @@ public :
      * Ascertain if the given code point is a label separator as specified by IDNA
      *
      * @return TRUE is the code point is a label separator
-     *
-     *
      */
     UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
 
-    
     inline UBool isLDHChar(UChar32 ch);
-private:        
+
+private:
     /**
      * The address of this static class variable serves as this class's ID
      * for ICU "poor man's RTTI".