]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tokenzr.h | |
3 | // Purpose: String tokenizer | |
4 | // Author: Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 04/22/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Guilhem Lavaux | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_TOKENZRH | |
13 | #define _WX_TOKENZRH | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/object.h" | |
20 | #include "wx/string.h" | |
c058d771 | 21 | #include "wx/filefn.h" |
f4ada568 GL |
22 | |
23 | class wxStringTokenizer : wxObject { | |
24 | public: | |
25 | wxStringTokenizer(const wxString& to_tokenize, | |
26 | const wxString& delims = " \t\r\n", | |
27 | bool ret_delim = FALSE); | |
28 | ~wxStringTokenizer(); | |
29 | ||
30 | int CountTokens(); | |
31 | bool HasMoreToken(); | |
32 | wxString NextToken(); | |
33 | wxString GetString() { return m_string; } | |
34 | protected: | |
35 | off_t FindDelims(const wxString& str, const wxString& delims); | |
36 | protected: | |
37 | wxString m_string, m_delims; | |
38 | bool m_retdelims; | |
39 | }; | |
40 | ||
41 | #endif |