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