#pragma once #include "ComplexCommand.h" namespace Incart::DeviceComplexCommands { class SetExaminationInfoCommand : public Usb::ComplexCommand { Q_OBJECT public: SetExaminationInfoCommand(uint32_t uid) : Usb::ComplexCommand("SetExaminationInfo", uid) { } signals: void answerIsReady(Usb::ComplexCommand* command, std::shared_ptr status); }; } // namespace Incart::DeviceComplexCommands