]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
Digital Mars needs CCS_RIGHT
[wxWidgets.git] / include / wx / string.h
index dc60c22a889858b765b81301b5b23866ca9057ca..fb73ad8757e168c6d1ffad036015bdea18a31487 100644 (file)
@@ -1132,9 +1132,17 @@ public:
     bool ToLong(long *val, int base = 10) const;
         // convert to an unsigned integer
     bool ToULong(unsigned long *val, int base = 10) const;
+        // convert to wxLongLong
+#if defined(wxLongLong_t)
+    bool ToLongLong(wxLongLong_t *val, int base = 10) const;
+        // convert to wxULongLong
+    bool ToULongLong(wxULongLong_t *val, int base = 10) const;
+#endif // wxLongLong_t
         // convert to a double
     bool ToDouble(double *val) const;
 
+
+
   // formatted input/output
     // as sprintf(), returns the number of characters written or < 0 on error
     // (take 'this' into account in attribute parameter count)