mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
Support the RAD-Epsilon
This commit is contained in:
@@ -43,6 +43,10 @@ static std::vector<DeviceType> supportedDevices = {
|
||||
NeoVIPLASMA::DEVICE_TYPE,
|
||||
#endif
|
||||
|
||||
#ifdef __RADEPSILON_H_
|
||||
RADEpsilon::DEVICE_TYPE,
|
||||
#endif
|
||||
|
||||
#ifdef __RADGALAXY_H_
|
||||
RADGalaxy::DEVICE_TYPE,
|
||||
#endif
|
||||
@@ -169,6 +173,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
|
||||
findResults.push_back(NeoVIPLASMA::Find());
|
||||
#endif
|
||||
|
||||
#ifdef __RADEPSILON_H_
|
||||
findResults.push_back(RADEpsilon::Find());
|
||||
#endif
|
||||
|
||||
#ifdef __RADGALAXY_H_
|
||||
findResults.push_back(RADGalaxy::Find(pcapDevices));
|
||||
#endif
|
||||
@@ -267,4 +275,4 @@ const std::vector<DeviceType>& DeviceFinder::GetSupportedDevices() {
|
||||
supportedDevicesCached = true;
|
||||
}
|
||||
return supportedDevices;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user