Generate C++ files for the schema.
(self)
| 85 | } |
| 86 | |
| 87 | def generate(self) -> List[GeneratedFile]: |
| 88 | """Generate C++ files for the schema.""" |
| 89 | files = [] |
| 90 | |
| 91 | # Generate a single header file with all types |
| 92 | files.append(self.generate_header()) |
| 93 | |
| 94 | return files |
| 95 | |
| 96 | def get_header_name(self) -> str: |
| 97 | """Get the header file name.""" |
nothing calls this directly
no test coverage detected