]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/unichar.h
support for iPhone callbacks
[wxWidgets.git] / interface / wx / unichar.h
index 776c64486e7327a6d8dc64c281b39e075b1b5b5b..491874a9e786e9c8f1f9ee85bca41ffd4f1f02d6 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxUniChar
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -45,6 +45,8 @@ public:
     wxUniChar(unsigned long int c);
     wxUniChar(short int c);
     wxUniChar(unsigned short int c);
+    wxUniChar(wxLongLong_t c);
+    wxUniChar(wxULongLong_t c);
 
     wxUniChar(const wxUniCharRef& c);
 
@@ -54,7 +56,7 @@ public:
     value_type GetValue() const;
 
     /**
-        Returns true if the character is an ASCII character (i.e. if its value is less than 128).
+        Returns true if the character is an ASCII character (i.e.\ if its value is less than 128).
     */
     bool IsAscii() const;
 
@@ -97,6 +99,8 @@ public:
     operator unsigned long int() const;
     operator short int() const;
     operator unsigned short int() const;
+    operator wxLongLong_t() const;
+    operator wxULongLong_t() const;
     //@}
 
     //@{
@@ -114,6 +118,8 @@ public:
     wxUniChar& operator=(unsigned long int c);
     wxUniChar& operator=(short int c);
     wxUniChar& operator=(unsigned short int c);
+    wxUniChar& operator=(wxLongLong_t c);
+    wxUniChar& operator=(wxULongLong_t c);
     //@}
 };