MYNT-EYE-S-SDK/src/device/device.cc

23 lines
344 B
C++
Raw Normal View History

2018-04-04 05:50:27 +03:00
#include "device/device.h"
#include <glog/logging.h>
#include "uvc/uvc.h"
MYNTEYE_BEGIN_NAMESPACE
Device::Device() {
VLOG(2) << __func__;
}
Device::~Device() {
VLOG(2) << __func__;
}
std::shared_ptr<Device> Device::Create(
const std::string &name, std::shared_ptr<uvc::device> device) {
return nullptr;
}
MYNTEYE_END_NAMESPACE