New constructor with command ID param for delegating construction, for the CMSIS-DAP command class

This commit is contained in:
Nav
2022-03-16 17:01:08 +00:00
parent 0c57d6b143
commit 14bdfbf89a

View File

@@ -50,6 +50,8 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap
*/
using ExpectedResponseType = Response;
explicit Command(unsigned char commandId): commandId(commandId) {};
Command() = default;
virtual ~Command() = default;