MYNT-EYE-S-SDK/src/device/device_s.cc
2018-04-08 22:35:49 +08:00

21 lines
403 B
C++

#include "device/device_s.h"
#include <glog/logging.h>
MYNTEYE_BEGIN_NAMESPACE
StandardDevice::StandardDevice(std::shared_ptr<uvc::device> device)
: Device(Model::STANDARD, device) {
VLOG(2) << __func__;
}
StandardDevice::~StandardDevice() {
VLOG(2) << __func__;
}
std::vector<Stream> StandardDevice::GetKeyStreams() const {
return {Stream::LEFT, Stream::RIGHT};
}
MYNTEYE_END_NAMESPACE