| 306 | }; |
| 307 | |
| 308 | Model readinstance(std::string filename) { |
| 309 | Reader reader(filename); |
| 310 | return reader.read(); |
| 311 | } |
| 312 | |
| 313 | // convert string to lower-case, modifies string |
| 314 | static inline void tolower(std::string& s) { |
no test coverage detected