SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
util.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_PLUGIN_REMOTE_PERSON_PLUGIN_UTIL_CONFIG_HPP_
6#define SKYWAY_PLUGIN_REMOTE_PERSON_PLUGIN_UTIL_CONFIG_HPP_
7
8#include <api/stats/rtc_stats_report.h>
9
10#include <json.hpp>
11
12namespace skyway {
13namespace plugin {
14namespace remote_person {
15namespace connection {
16namespace util {
17
18const std::optional<nlohmann::json> StatsToJson(
19 const rtc::scoped_refptr<const webrtc::RTCStatsReport>& report);
20
21} // namespace util
22} // namespace connection
23} // namespace remote_person
24} // namespace plugin
25} // namespace skyway
26
27#endif /* SKYWAY_PLUGIN_REMOTE_PERSON_PLUGIN_UTIL_CONFIG_HPP_ */