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