| 73 | } |
| 74 | |
| 75 | void DesignComponent::addNamedObject(std::string_view name, FileCNodeId object, |
| 76 | DesignComponent* def) { |
| 77 | m_namedObjects.emplace(name, std::make_pair(object, def)); |
| 78 | } |
| 79 | |
| 80 | const std::pair<FileCNodeId, DesignComponent*>* DesignComponent::getNamedObject( |
| 81 | std::string_view name) const { |
no outgoing calls
no test coverage detected