| 318 | } |
| 319 | |
| 320 | Type Module::getOptionType ( const string & optName ) const { |
| 321 | auto it = options.find(optName); |
| 322 | if ( it != options.end() ) { |
| 323 | return it->second; |
| 324 | } else { |
| 325 | return Type::none; |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | Type Module::findOption ( const string & name ) { |
| 330 | Type optT = Type::none; |
no test coverage detected