Output of property-set emission for a given attr list.
| 148 | |
| 149 | @dataclass |
| 150 | class EmittedSchema: |
| 151 | """Output of property-set emission for a given attr list.""" |
| 152 | properties_h: str # UPROPERTY block for header |
| 153 | imports_cpp: str # ImportFromXml body (between codegen tags) |
| 154 | exports_cpp: str # ExportTo body (between codegen tags) |
| 155 | |
| 156 | |
| 157 | @dataclass |
no outgoing calls
no test coverage detected