(self, val)
| 1348 | class QJsonObjectPrinter(QCborContainerPrinterBase): |
| 1349 | |
| 1350 | def __init__(self, val): |
| 1351 | if dumper.qtVersionAtLeast(0x050f00): # also works in Qt6 |
| 1352 | container_ptr = int(pointer_from_possible_totally_ordered_wrapper(val['o']['d'])) |
| 1353 | else: |
| 1354 | raise RuntimeError("Qt version too old for inspecting QJsonObject") |
| 1355 | super().__init__(container_ptr, 'QJsonObject') |
| 1356 | |
| 1357 | class QCborValuePrinterBase(PrinterForwarder): |
| 1358 |
nothing calls this directly
no test coverage detected