]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/tokenzr.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: String tokenizer
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/object.h"
20 #include "wx/string.h"
21 #include "wx/filefn.h"
23 class wxStringTokenizer
: wxObject
{
25 wxStringTokenizer(const wxString
& to_tokenize
,
26 const wxString
& delims
= " \t\r\n",
27 bool ret_delim
= FALSE
);
33 wxString
GetString() { return m_string
; }
35 off_t
FindDelims(const wxString
& str
, const wxString
& delims
);
37 wxString m_string
, m_delims
;