| 259 | |
| 260 | |
| 261 | class GuidPrefixPrinter(GuidPrinterBase): |
| 262 | |
| 263 | def __init__(self, value): |
| 264 | GuidPrinterBase.__init__(self, get_byte_array(value)) |
| 265 | |
| 266 | def to_string(self): |
| 267 | return self._to_string('unknown prefix' if self.unknown() else None) |
| 268 | |
| 269 | printer_for_types(GuidPrefixPrinter, 'OpenDDS::DCPS::GuidPrefix_t') |
| 270 |