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