(self)
| 529 | yield mdef |
| 530 | |
| 531 | def isAbstract(self): |
| 532 | for mdef in self.iterMemberDef(): |
| 533 | if mdef.get_argsstring().endswith("=0"): |
| 534 | return True |
| 535 | return False |
| 536 | |
| 537 | class DoxygenCppFunction(object): |
| 538 | """ A Cpp function definition from a doxygen file""" |
no test coverage detected