20 lines
416 B
C++
20 lines
416 B
C++
#ifndef __CDCACM_WINDOWS_H_
|
|
#define __CDCACM_WINDOWS_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "icsneo/platform/windows/vcp.h"
|
|
|
|
namespace icsneo {
|
|
|
|
class CDCACM : public VCP {
|
|
public:
|
|
CDCACM(const device_eventhandler_t& err, neodevice_t& forDevice) : VCP(err, forDevice) {}
|
|
static void Find(std::vector<FoundDevice>& found) { return VCP::Find(found, { L"usbser" }); }
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |