| 453 | } |
| 454 | |
| 455 | ClassDefinition* Design::getClassDefinition(std::string_view name) const { |
| 456 | ClassNameClassDefinitionMap::const_iterator itr = |
| 457 | m_uniqueClassDefinitions.find(name); |
| 458 | if (itr == m_uniqueClassDefinitions.end()) { |
| 459 | return nullptr; |
| 460 | } else { |
| 461 | return (*itr).second; |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | void Design::orderPackages() { |
| 466 | if (m_orderedPackageNames.empty()) return; |
no outgoing calls