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

21 lines
403 B
C++
Raw Normal View History

2018-04-04 10:52:10 +03:00
#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__;
}
2018-04-08 17:35:49 +03:00
std::vector<Stream> StandardDevice::GetKeyStreams() const {
return {Stream::LEFT, Stream::RIGHT};
}
2018-04-04 10:52:10 +03:00
MYNTEYE_END_NAMESPACE