Iterate over all members of this class. We do not care about the sections defined in the documentation here.
(self)
| 517 | return res |
| 518 | |
| 519 | def iterMemberDef(self): |
| 520 | """Iterate over all members of this class. |
| 521 | |
| 522 | We do not care about the sections defined in the documentation here. |
| 523 | """ |
| 524 | for sdef in self.compound.get_sectiondef(): |
| 525 | for mdef_ in sdef.get_memberdef(): |
| 526 | mdef = DoxygenCppFunction.generate_from_obj(mdef_) |
| 527 | mdef.parent_doxy_file = self |
| 528 | mdef.compoundname = self.compound.compoundname |
| 529 | yield mdef |
| 530 | |
| 531 | def isAbstract(self): |
| 532 | for mdef in self.iterMemberDef(): |
no test coverage detected