Add the ability to enumerate supported devices

This commit is contained in:
Paul Hollinsky
2018-11-20 09:42:25 -05:00
parent f05f96822e
commit 8ef2260fbe
5 changed files with 172 additions and 0 deletions
+2
View File
@@ -2,6 +2,7 @@
#define __DEVICEFINDER_H_
#include "icsneo/device/device.h"
#include "icsneo/device/devicetype.h"
#include <vector>
#include <memory>
@@ -10,6 +11,7 @@ namespace icsneo {
class DeviceFinder {
public:
static std::vector<std::shared_ptr<Device>> FindAll();
static const std::vector<DeviceType>& GetSupportedDevices();
};
}