SDDC_Driver
Loading...
Searching...
No Matches
types_cpp.h
1#ifndef _H_TYPES_CPP
2#define _H_TYPES_CPP
3
4#include <string>
5
6using namespace std;
7
8namespace SDDC {
9 typedef struct DeviceItem {
10 uint8_t index;
11 string product;
13 } DeviceItem;
14}
15
16#endif
Definition types_cpp.h:9
uint8_t index
An arbitrary index used to uniquely identify each device.
Definition types_cpp.h:10
string product
The model of the SDR.
Definition types_cpp.h:11
string serial_number
The serial number of the SDR.
Definition types_cpp.h:12