Files
nearby/cpp/core_v2/internal/mediums/mediums.cc
T
Alexey Polyudov a4ef9ee564 Roll forward to cl/318180324
Signed-off-by: Alexey Polyudov <apolyudov@google.com>
Change-Id: I71bb49fe74104964088d392b12775ec2a253b1c9
2020-06-24 18:15:07 -07:00

24 lines
463 B
C++

#include "core_v2/internal/mediums/mediums.h"
namespace location {
namespace nearby {
namespace connections {
BluetoothRadio& Mediums::GetBluetoothRadio() {
return bluetooth_radio_;
}
BluetoothClassic& Mediums::GetBluetoothClassic() {
return bluetooth_classic_;
}
WifiLan& Mediums::GetWifiLan() {
return wifi_lan_;
}
mediums::WebRtc& Mediums::GetWebRtc() { return webrtc_; }
} // namespace connections
} // namespace nearby
} // namespace location