mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 09:28:40 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#include <iterator>
|
||||
#include <iostream>
|
||||
|
||||
#include "include/icsneocpp.h"
|
||||
#include "device/include/devicefinder.h"
|
||||
|
||||
using namespace icsneo;
|
||||
|
||||
std::vector<std::shared_ptr<Device>> icsneo::FindAllDevices() {
|
||||
return DeviceFinder::FindAll();
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
#ifndef __ICSNEOCPP_H_
|
||||
#define __ICSNEOCPP_H_
|
||||
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
|
||||
#include "device/include/device.h"
|
||||
|
||||
namespace icsneo {
|
||||
std::vector<std::shared_ptr<Device>> FindAllDevices();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user