| 327 | } |
| 328 | |
| 329 | static inline LpSectionKeyword parsesectionkeyword(const std::string& str) { |
| 330 | // look up lower case |
| 331 | auto it(sectionkeywordmap.find(str)); |
| 332 | if (it != sectionkeywordmap.end()) return it->second; |
| 333 | |
| 334 | return LpSectionKeyword::NONE; |
| 335 | } |
| 336 | |
| 337 | Model Reader::read() { |
| 338 | // std::clog << "Reading input, tokenizing..." << std::endl; |
no test coverage detected