(self, name: str)
| 613 | success=success_type) |
| 614 | |
| 615 | def generate_constructor(self, name: str) -> str: |
| 616 | if not self.function.cfunction: |
| 617 | raise Exception('self.function.update() must be called') |
| 618 | return cpp_class_constructor_template.safe_substitute( |
| 619 | name=name, |
| 620 | cfunction=self.function.cfunction.name, |
| 621 | params=self.get_params(), |
| 622 | args=self.get_args(), |
| 623 | success=success_type) |
| 624 | |
| 625 | |
| 626 | class CPPClass: |
no test coverage detected