| 486 | } |
| 487 | |
| 488 | bool ControlledVocabulary::hasTermWithName(const OpenMS::String& name) const |
| 489 | { |
| 490 | std::map<String, String>::const_iterator it = namesToIds_.find(name); |
| 491 | return it != namesToIds_.end(); |
| 492 | } |
| 493 | |
| 494 | bool ControlledVocabulary::isChildOf(const String& child, const String& parent) const |
| 495 | { |
no test coverage detected