X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/328f5751e8a06727b137189fe04891a9f43bfc8b..a0f4d36895556e3054e2256cb5f1787cc9fcf75c:/interface/tokenzr.h diff --git a/interface/tokenzr.h b/interface/tokenzr.h index 6d188c59b2..b9db6a1826 100644 --- a/interface/tokenzr.h +++ b/interface/tokenzr.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: tokenzr.h -// Purpose: documentation for wxStringTokenizer class +// Purpose: interface of wxStringTokenizer // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -61,7 +61,7 @@ In this mode, the empty tokens in the middle of the string will be returned, i.e. @c "a::b:" will be tokenized in - three tokens 'a', '' and 'b'. Notice that all trailing delimiters are ignored + three tokens 'a', " and 'b'. Notice that all trailing delimiters are ignored in this mode, not just the last one, i.e. a string @c "a::b::" would still result in the same set of tokens. @@ -99,8 +99,7 @@ @library{wxbase} @category{data} - @seealso - wxStringTokenize + @see wxStringTokenize() */ class wxStringTokenizer : public wxObject { @@ -130,7 +129,8 @@ public: GetNextToken() or @c NUL if there had been no calls to this function yet or if it returned the trailing empty token in @c wxTOKEN_RET_EMPTY_ALL mode. - This function is new since wxWidgets version 2.7.0 + + @wxsince{2.7.0} */ wxChar GetLastDelimiter(); @@ -165,3 +165,4 @@ public: const wxString& delims = " \t\r\n", wxStringTokenizerMode mode = wxTOKEN_DEFAULT); }; +