| 66 | } |
| 67 | |
| 68 | bool NamedObjectVector::IsObjDefined(const std::string &name) const { |
| 69 | return (name2index.left.count(name) > 0); |
| 70 | } |
| 71 | |
| 72 | const NamedObject *NamedObjectVector::GetObj(const std::string &name) const { |
| 73 | return objs[GetIndex(name)]; |
no test coverage detected