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