Get the header file name.
(self)
| 94 | return files |
| 95 | |
| 96 | def get_header_name(self) -> str: |
| 97 | """Get the header file name.""" |
| 98 | if self.package: |
| 99 | return self.package.replace(".", "_") |
| 100 | return "generated" |
| 101 | |
| 102 | def get_namespace(self) -> str: |
| 103 | """Get the C++ namespace.""" |
no test coverage detected