#ifndef COMMANDCONTROL_H #define COMMANDCONTROL_H #include #include "model/ultrasoundModule/type/ECommandType.h" typedef struct RecieverContent_t { QString reciever; QList content; }RecieverContent_t; typedef struct CommandControl_t { ECommandType::eCommandType commandType; RecieverContent_t recieverInfo; int value; int timeTag; }CommandControl_t; Q_DECLARE_METATYPE(CommandControl_t) Q_DECLARE_METATYPE(QList) #endif //COMMANDCONTROL_H