SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
remote_stream.hpp
1//
2// © NTT DOCOMO BUSINESS, Inc. All Rights Reserved.
3//
4
5#ifndef SKYWAY_CORE_INTERFACE_REMOTE_STREAM_HPP_
6#define SKYWAY_CORE_INTERFACE_REMOTE_STREAM_HPP_
7
8#include "skyway/core/interface/stream.hpp"
9
10namespace skyway {
11namespace core {
12namespace interface {
13
15class RemoteStream : public Stream {
16protected:
17 RemoteStream(const std::string& id, model::ContentType content_type);
18};
19
20} // namespace interface
21} // namespace core
22} // namespace skyway
23
24#endif /* SKYWAY_CORE_INTERFACE_REMOTE_STREAM_HPP_ */
RemoteMemberで扱うStream
Definition remote_stream.hpp:15
MediaStreamやDataStreamの基底クラス
Definition stream.hpp:15