()
| 716 | |
| 717 | |
| 718 | def generate_cpp_header() -> str: |
| 719 | process_functions() |
| 720 | return generate_lines(cpp_header_preamble + |
| 721 | [c.generate() for c in cpp_classes]) |
| 722 | |
| 723 | |
| 724 | c_type_map: Dict[str, Type] = {} |
nothing calls this directly
no test coverage detected