(self, fout, defs)
| 23 | _const = None |
| 24 | |
| 25 | def __call__(self, fout, defs): |
| 26 | super().__call__(fout) |
| 27 | self._write("// %s", self._get_header()) |
| 28 | self._write("#ifndef MGB_PARAM") |
| 29 | self._write("#define MGB_PARAM") |
| 30 | self._process(defs) |
| 31 | self._write("#endif // MGB_PARAM") |
| 32 | |
| 33 | def _ctype2attr(self, ctype, value): |
| 34 | if ctype == "uint32_t": |
nothing calls this directly
no test coverage detected