Subversion Repositories heating

Rev

Rev 5 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 6
Line 215... Line 215...
215
int helper::findc (string str, char c)
215
int helper::findc (string str, char c)
216
{
216
{
217
	return str.find(c);
217
	return str.find(c);
218
}
218
}
219
 
219
 
220
vector<string> split(string str, char delimiter)
220
vector<string> helper::split(string str, char delimiter)
221
{
221
{
222
vector<string> internal;
222
vector<string> internal;
223
stringstream ss(str);		// Turn the string into a stream.
223
stringstream ss(str);		// Turn the string into a stream.
224
string tok;
224
string tok;
225
 
225