Get the C++ namespace.
(self)
| 100 | return "generated" |
| 101 | |
| 102 | def get_namespace(self) -> str: |
| 103 | """Get the C++ namespace.""" |
| 104 | if self.package: |
| 105 | return self.package.replace(".", "::") |
| 106 | return "" |
| 107 | |
| 108 | def get_namespaced_type_name( |
| 109 | self, |
no test coverage detected