Zao SDK for Jetson / libzao-endpoint API リファレンス 1.2.0.0 (2023-10-30)
Loading...
Searching...
No Matches
StreamingState.hpp
1#ifndef ZAO_ENDPOINT_MONITOR_STREAMING_STATE_HPP_
2#define ZAO_ENDPOINT_MONITOR_STREAMING_STATE_HPP_
3
4namespace zao {
5namespace endpoint {
6namespace monitor {
7
12 public:
17
23 StreamingState(bool is_streaming) : is_streaming_(is_streaming) {}
24
28 bool IsStreaming() const noexcept { return is_streaming_; }
29
30 private:
34 bool is_streaming_ = false;
35};
36
37} // namespace monitor
38} // namespace endpoint
39} // namespace zao
40
41#endif // ZAO_ENDPOINT_MONITOR_STREAMING_STATE_HPP_
ストリーミング状態を表すクラス.
Definition StreamingState.hpp:11
StreamingState(bool is_streaming)
StreamingStateオブジェクトを初期値指定で構築する.
Definition StreamingState.hpp:23
StreamingState()
StreamingStateオブジェクトをデフォルト構築する.
Definition StreamingState.hpp:16
bool IsStreaming() const noexcept
ストリーミング中か否か.
Definition StreamingState.hpp:28
Zao製品共通の名前空間
Definition FactoryInterface.hpp:11