(self, val)
| 1333 | class QCborMapPrinter(QCborContainerPrinterBase): |
| 1334 | |
| 1335 | def __init__(self, val): |
| 1336 | container_ptr = int(pointer_from_possible_totally_ordered_wrapper(val['d']['d'])) |
| 1337 | super().__init__(container_ptr, 'QCborMap') |
| 1338 | |
| 1339 | class QJsonArrayPrinter(QCborContainerPrinterBase): |
| 1340 |
nothing calls this directly
no test coverage detected