Subversion Repositories spk

Rev

Rev 14 | Rev 39 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 34
Line 128... Line 128...
128
	String right(int num) const;
128
	String right(int num) const;
129
 
129
 
130
	bool isNumber(bool integer = false) const;
130
	bool isNumber(bool integer = false) const;
131
	bool isCharNumber(int c) const;
131
	bool isCharNumber(int c) const;
132
	const String &removeFirstSpace();
132
	const String &removeFirstSpace();
-
 
133
	const String &truncate(int iNum);
133
 
134
 
134
private:
135
private:
135
	bool _isCharNumber(char c) const;
136
	bool _isCharNumber(char c) const;
136
	std::string::size_type _token_nextPos(const char *token, std::string::size_type curPos) const;
137
	std::string::size_type _token_nextPos(const char *token, std::string::size_type curPos) const;
137
};
138
};