92 std::ifstream file( _name.c_str(), std::ios::in | std::ios::binary );
100 count = this->
search(file, param, fdftype, 1);
103 for (
int index = 0; index < count; index++) {
106 getline(file, line, paramsep);
109 line.erase(line.find_last_not_of (
" ") + 1);
112 start = ( line.find(
'"' ) == 0 ? 1 : 0 );
113 end = line.size() - 1;
114 if ( line.rfind(
'"' ) == end ) {
117 line = line.substr( start, end - start + 1 );