FACT++  1.0
vector< string > Tools::Split ( const std::string &  str,
const std::string &  delim 
)

Definition at line 280 of file tools.cc.

281 {
282  vector<string> rc;
283  boost::split(rc, str, boost::is_any_of(delim));
284  return rc;
285 }
char str[80]
Definition: test_client.c:7