(self)
| 537 | class DoxygenCppFunction(object): |
| 538 | """ A Cpp function definition from a doxygen file""" |
| 539 | def __init__(self): |
| 540 | # No other code here, below is the real init method! |
| 541 | self.initialize_dgencpp() |
| 542 | |
| 543 | @staticmethod |
| 544 | def generate_from_obj(mdef): |
nothing calls this directly
no test coverage detected