Lluvia
DeviceDescriptor.h
Go to the documentation of this file.
1 
8 #ifndef LLUVIA_CORE_DEVICE_DEVICE_DESCRIPTOR_H_
9 #define LLUVIA_CORE_DEVICE_DEVICE_DESCRIPTOR_H_
10 
11 #include <cstdint>
12 #include <string>
13 
15 
16 namespace ll {
17 
19  uint32_t id;
21  std::string name;
22 
23  bool operator==(const DeviceDescriptor& other) const
24  {
25  return id == other.id && deviceType == other.deviceType && name == other.name;
26  }
27 };
28 
29 } // namespace ll
30 
31 #endif /* LLUVIA_CORE_DEVICE_DEVICE_DESCRIPTOR_H_ */
DeviceType enum.
Definition: Buffer.h:28
DeviceType
Image axis enumeration.
Definition: DeviceType.h:19
Definition: DeviceDescriptor.h:18
bool operator==(const DeviceDescriptor &other) const
Definition: DeviceDescriptor.h:23
std::string name
Definition: DeviceDescriptor.h:21
uint32_t id
Definition: DeviceDescriptor.h:19
ll::DeviceType deviceType
Definition: DeviceDescriptor.h:20