MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / iterMemberDef

Method iterMemberDef

tools/PythonExtensionChecker.py:519–529  ·  view source on GitHub ↗

Iterate over all members of this class. We do not care about the sections defined in the documentation here.

(self)

Source from the content-addressed store, hash-verified

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():

Callers 4

isEmptyMethod · 0.95
isAbstractMethod · 0.95
checkPythonPxdHeaderFunction · 0.95
get_pxd_from_classMethod · 0.80

Calls 1

generate_from_objMethod · 0.80

Tested by

no test coverage detected