1998-09-06 14:28:00 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tokenzr.h
|
|
|
|
// Purpose: String tokenizer
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/22/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TOKENZRH
|
|
|
|
#define _WX_TOKENZRH
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
1998-09-08 14:21:16 -04:00
|
|
|
#include "wx/filefn.h"
|
1998-09-06 14:28:00 -04:00
|
|
|
|
|
|
|
class wxStringTokenizer : wxObject {
|
|
|
|
public:
|
|
|
|
wxStringTokenizer(const wxString& to_tokenize,
|
|
|
|
const wxString& delims = " \t\r\n",
|
|
|
|
bool ret_delim = FALSE);
|
|
|
|
~wxStringTokenizer();
|
|
|
|
|
|
|
|
int CountTokens();
|
|
|
|
bool HasMoreToken();
|
|
|
|
wxString NextToken();
|
|
|
|
wxString GetString() { return m_string; }
|
|
|
|
protected:
|
|
|
|
off_t FindDelims(const wxString& str, const wxString& delims);
|
|
|
|
protected:
|
|
|
|
wxString m_string, m_delims;
|
|
|
|
bool m_retdelims;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|