Support the RAD-Epsilon

This commit is contained in:
Paul Hollinsky
2021-05-28 18:10:16 -04:00
parent c12330eec4
commit bda37e31f3
5 changed files with 74 additions and 1 deletions
+9 -1
View File
@@ -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;
}
}