#include #include #include #include class PdecHandler; FSFW_ENUM(PdecCommands, DeviceCommandId_t,((PRINT_CLCW, "Print CLCW")) ((PRINT_PDEC_MON, "Print PDEC Mon Status"))) class PdecPrintClcwAction : public TemplateAction { public: PdecPrintClcwAction(PdecHandler *owner) : TemplateAction(owner, PdecCommands::PRINT_CLCW) {}; }; class PdecPrintMonAction : public TemplateAction { public: PdecPrintMonAction(PdecHandler *owner) : TemplateAction(owner, PdecCommands::PRINT_PDEC_MON) {}; };