(file) Return to String.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/String.h between version 1.76 and 1.77

version 1.76, 2003/08/12 18:16:42 version 1.77, 2003/10/16 19:26:36
Line 114 
Line 114 
     String(const Char16* str, Uint32 n);     String(const Char16* str, Uint32 n);
  
     /// Initialize from a plain old C-String:     /// Initialize from a plain old C-String:
     String(const char* str, const char*);  
     String(const char* str);     String(const char* str);
  
   #ifdef PEGASUS_USE_EXPERIMENTAL_INTERFACES
       /// Initialize from a plain old C-String, allowing UTF-8:
       String(const char* str, const char* utfFlag);
   #endif
   
     /// Initialize from the first n characters of a plain old C-String:     /// Initialize from the first n characters of a plain old C-String:
     String(const char* str, Uint32 n);     String(const char* str, Uint32 n);
  
Line 363 
Line 367 
     */     */
     static Boolean equalNoCase(const String& str1, const String& str2);     static Boolean equalNoCase(const String& str1, const String& str2);
  
   #ifdef PEGASUS_USE_EXPERIMENTAL_INTERFACES
     // UTF8 specific code:     // UTF8 specific code:
   
       /** Assign this string with a C string that may contain UTF-8.
           @param str The C string
       */
     String& assignUTF8(const char* str);     String& assignUTF8(const char* str);
   
       /** Create an 8-bit UTF-8 representation of this String object.
           @return CString object that provides access to the 8-bit UTF-8 String
           representation.
       */
     CString getCStringUTF8() const;     CString getCStringUTF8() const;
     static Boolean isUTF8(const char*);  
  
       /** Tests whether a C string contains valid UTF-8 characters.
           @param str The C string
       */
       static Boolean isUTF8(const char*);
   #endif
  
 private: private:
  


Legend:
Removed from v.1.76  
changed lines
  Added in v.1.77

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2