64 std::ifstream& in = *p_mydata;
68 boost::char_separator<char> sep(
" \f\t\v");
69 typedef boost::tokenizer<boost::char_separator<char> > Tokenizer;
72 std::ostringstream ost;
73 while( std::getline(in, line) )
75 Tokenizer tok(line, sep);
76 std::vector< std::string > tokens(tok.begin(), tok.end());
78 if ( tokens.size() > 1 )
80 ost<<tokens[0]<<
" "<<tokens[1]<<
'\n';
81 std::string& dataname = tokens[0];
82 std::string& svalue = tokens[1];
83 if(dataname ==
"IP" ) vs.
setValue(configData.
IP, svalue);
91 if(dataname ==
"PBEA") {