| 23 | } |
| 24 | |
| 25 | IEntityClassPtr EClassManager::findClass(const std::string& className) |
| 26 | { |
| 27 | return std::static_pointer_cast<IEntityClass>( |
| 28 | GlobalDeclarationManager().findDeclaration(decl::Type::EntityDef, className) |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | void EClassManager::forEachEntityClass(EntityClassVisitor& visitor) |
| 33 | { |