ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/utils/StringTokenizer.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/utils/StringTokenizer.hpp (file contents):
Revision 1807 by tim, Wed Nov 24 19:49:07 2004 UTC vs.
Revision 1808 by tim, Tue Nov 30 23:14:29 2004 UTC

# Line 59 | Line 59 | class StringTokenizer {
59           * Boost's tokenizer class is one of them
60           */
61          StringTokenizer(const std::string & str,
62 <                        const std::string & delim = " \t\n\r");
62 >                        const std::string & delim = " ;\t\n\r");
63  
64          /**
65           * Constructs a string tokenizer for an iterator range [first, last). The characters in the delim argument
# Line 72 | Line 72 | class StringTokenizer {
72           * Boost's tokenizer class is one of them
73           */
74          StringTokenizer(std::string::const_iterator& first, std::string::const_iterator& last,
75 <                        const std::string & delim = " \t\n\r");
75 >                        const std::string & delim = " ;\t\n\r");
76  
77          /**
78           * Constructs a string tokenizer for the specified string. The characters in the delim argument

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines