| 517 | } |
| 518 | |
| 519 | void Design::addClassDefinition(std::string_view className, |
| 520 | ClassDefinition* classDef) { |
| 521 | m_classDefinitions.emplace(className, classDef); |
| 522 | m_uniqueClassDefinitions.emplace(className, classDef); |
| 523 | } |
| 524 | |
| 525 | void Design::clearContainers() { |
| 526 | m_moduleDefinitions.clear(); |
no outgoing calls
no test coverage detected