| 33 | }; |
| 34 | |
| 35 | const ParamClass* GetChildClass(const ParamEntry& parent, const char* name) |
| 36 | { |
| 37 | ParamEntry* child = parent.FindEntryNoInheritance(name); |
| 38 | if (!child || !child->IsClass()) |
| 39 | { |
| 40 | return nullptr; |
| 41 | } |
| 42 | |
| 43 | return child->GetClassInterface(); |
| 44 | } |
| 45 | |
| 46 | int CountNestedClasses(const ParamEntry& entry) |
| 47 | { |
no test coverage detected