[project @ 2005-06-28 03:16:45 by unknown_lamer]
[clinton/bobotpp.git] / source / StringTokenizer.H
CommitLineData
cb21075d 1// StringTokenizer.H -*- C++ -*-
2// Copyright (c) 1997, 1998 Etienne BERNARD
a6339323 3// Copyright (c) 2005 Clinton Ebadi
cb21075d 4
5// This program is free software; you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation; either version 2 of the License, or
8// any later version.
9
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14
15// You should have received a copy of the GNU General Public License
16// along with this program; if not, write to the Free Software
39b022cb 17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cb21075d 18
19#ifndef STRINGTOKENIZER_H
20#define STRINGTOKENIZER_H
21
a6339323 22#include <string>
cb21075d 23
a6339323 24class StringTokenizer
25{
26 std::string st;
cf8ea873 27 std::string::size_type pos;
cb21075d 28public:
a6339323 29 StringTokenizer(std::string);
cb21075d 30 StringTokenizer(StringTokenizer &);
31
a6339323 32 bool more_tokens_p ();
33 bool more_tokens_p (char);
cb21075d 34
cf8ea873 35 unsigned int count_tokens();
36 unsigned int count_tokens(char);
cb21075d 37
a6339323 38 std::string next_token();
39 std::string next_token(char, bool = false);
cb21075d 40
a6339323 41 std::string rest();
cb21075d 42};
43
44#endif