FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
vector<string> SkypeClient::Split
(
const string &
msg
)
inline
private
Definition at line
335
of file
skypeclient.cc
.
336
{
337
using namespace
boost
;
338
339
typedef
char_separator<char> separator;
340
const
tokenizer<separator> tok(msg, separator(
" "
));
341
342
vector<string> vec;
343
for
(
auto
it=tok.begin(); it!=tok.end(); it++)
344
vec.push_back((*it)[0]==0?it->substr(1):*it);
345
346
return
vec;
347
}
boost
SkypeClient
Generated on Sun Sep 18 2016 20:50:58 for FACT++ by
1.8.11