#ifndef PACKET_H #define PACKET_H #include typedef struct HidPacket_t { quint8 header; quint8 dataLength; quint8 type; quint8 functionCode; quint16 data; quint16 timeTag; }HidPacket_t; Q_DECLARE_METATYPE(HidPacket_t) #endif //PACKET_H