mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 09:28:40 +02:00
Device: Add device hardware info retrieval support
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef __HARDWAREINFOPACKET_H__
|
||||
#define __HARDWAREINFOPACKET_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
namespace icsneo {
|
||||
|
||||
class HardwareInfo;
|
||||
|
||||
struct HardwareInfoPacket {
|
||||
static std::shared_ptr<HardwareInfo> DecodeToMessage(const std::vector<uint8_t>& bytes);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __cplusplus
|
||||
|
||||
#endif // __DEVICECOMPONENTVERSIONPACKET_H__
|
||||
Reference in New Issue
Block a user