| 165 | } |
| 166 | |
| 167 | void DesignComponent::insertFunction(Function* p) { |
| 168 | m_functions.emplace(p->getName(), p); |
| 169 | } |
| 170 | |
| 171 | Task* DesignComponent::getTask(std::string_view name) const { |
| 172 | TaskMap::const_iterator itr = m_tasks.find(name); |
no test coverage detected