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