Device: Add device binary export support

This commit is contained in:
Yasser Yassine
2023-05-30 21:22:53 +00:00
parent f907d6759f
commit d9c12bffe7
11 changed files with 242 additions and 3 deletions
@@ -0,0 +1,22 @@
#ifndef _EXTENDED_GENERIC_BINARY_STATUS_MESSAGE_H_
#define _EXTENDED_GENERIC_BINARY_STATUS_MESSAGE_H_
#ifdef __cplusplus
#include "icsneo/communication/message/extendedresponsemessage.h"
namespace icsneo {
class GenericBinaryStatusMessage : public Message {
public:
GenericBinaryStatusMessage() : Message(Message::Type::GenericBinaryStatus) {}
size_t binarySize;
uint16_t binaryIndex;
uint16_t binaryStatus;
};
}
#endif // __cplusplus
#endif // _EXTENDED_GENERIC_BINARY_STATUS_RESPONSE_MESSAGE_H_