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