(self, val)
| 1327 | class QCborArrayPrinter(QCborContainerPrinterBase): |
| 1328 | |
| 1329 | def __init__(self, val): |
| 1330 | container_ptr = int(pointer_from_possible_totally_ordered_wrapper(val['d']['d'])) |
| 1331 | super().__init__(container_ptr, 'QCborArray') |
| 1332 | |
| 1333 | class QCborMapPrinter(QCborContainerPrinterBase): |
| 1334 |
nothing calls this directly
no test coverage detected