| 2352 | } |
| 2353 | |
| 2354 | string getConditional(const string& field_name) const |
| 2355 | { |
| 2356 | if (cst_.empty()) { |
| 2357 | return ""; |
| 2358 | } |
| 2359 | std::map<string, string>::const_iterator it = cst_.find(field_name); |
| 2360 | if (it != cst_.end()) { |
| 2361 | return it->second; |
| 2362 | } |
| 2363 | return ""; |
| 2364 | } |
| 2365 | |
| 2366 | string preFieldRead(const string& field_name) const |
| 2367 | { |
no test coverage detected