QNonContiguousByteDevice private classes: add Q_OBJECT macro
Task-number: QTBUG-122619 Change-Id: If50e051d5c6eed04ed03a97f0a1dafc7b47d551e Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>bb10
parent
299a9ac49c
commit
113f76cffb
|
|
@ -66,6 +66,7 @@ public:
|
|||
|
||||
class QNonContiguousByteDeviceByteArrayImpl : public QNonContiguousByteDevice
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit QNonContiguousByteDeviceByteArrayImpl(QByteArray *ba);
|
||||
~QNonContiguousByteDeviceByteArrayImpl();
|
||||
|
|
@ -83,6 +84,7 @@ protected:
|
|||
|
||||
class QNonContiguousByteDeviceRingBufferImpl : public QNonContiguousByteDevice
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit QNonContiguousByteDeviceRingBufferImpl(std::shared_ptr<QRingBuffer> rb);
|
||||
~QNonContiguousByteDeviceRingBufferImpl();
|
||||
|
|
@ -143,6 +145,7 @@ protected:
|
|||
// ... and the reverse thing
|
||||
class QByteDeviceWrappingIoDevice : public QIODevice
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit QByteDeviceWrappingIoDevice(QNonContiguousByteDevice *bd);
|
||||
~QByteDeviceWrappingIoDevice();
|
||||
|
|
|
|||
Loading…
Reference in New Issue