]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/tokenzr.h
SOCKLEN_T expanded to socklen_t if supported, neede by ALPHA (yes, it's back!)
[wxWidgets.git] / include / wx / tokenzr.h
index c23d130185e27c2fe8f456df2064c6cbe6f933da..764b4c80919e854b4bd252b376eb51946009fc9f 100644 (file)
@@ -30,7 +30,10 @@ public:
 
   int CountTokens();
   bool HasMoreToken();
+  inline bool HasMoreTokens() { return HasMoreToken(); };
   wxString NextToken();
+  // A better name!
+  inline wxString GetNextToken() { return NextToken(); };
   wxString GetString() { return m_string; }
 
   void SetString(const wxString& to_tokenize,