]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
changed the notebook control to use AddPage() interface (Julian's version
[wxWidgets.git] / include / wx / string.h
index 0b413e841fa66652e030d6f87d9eb3a69d029ec9..2b65099b97ad0bc9eabe59df05564b66e3bb4a4d 100644 (file)
@@ -349,12 +349,16 @@ public:
     //@}
   //@}
 
-  /** @name formated output */
+  /** @name formated input/output */
   //@{
     /// as sprintf(), returns the number of characters written or < 0 on error
   int Printf(const char *pszFormat, ...);
     /// as vprintf(), returns the number of characters written or < 0 on error
   int PrintfV(const char* pszFormat, va_list argptr);
+    /// as sscanf()
+  int Scanf(const char *pszFormat, ...) const;
+    /// as vsscanf()
+  int ScanfV(const char *pszFormat, va_list argptr) const;
   //@}
   
   // get writable buffer of at least nLen characters