(self)
| 653 | **kwargs) |
| 654 | |
| 655 | def generate(self) -> str: |
| 656 | return self.substitute( |
| 657 | cpp_class_template, |
| 658 | constructors=self.substitute(self.generate_constructors()), |
| 659 | methods=self.substitute(self.generate_methods())) |
| 660 | |
| 661 | |
| 662 | def params(virtual: Optional[Dict[str, str]] = None, |
no test coverage detected