Zao SDK for Jetson / libzao-endpoint API リファレンス 1.5.0.0 (2024-09-25)
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
13 public:
19
27 StreamingState(bool is_streaming) : is_streaming_(is_streaming) {}
28
33 bool IsStreaming() const noexcept { return is_streaming_; }
34
35 private:
40 bool is_streaming_ = false;
41};
42
43} // namespace monitor
44} // namespace endpoint
45} // namespace zao
46
47#endif // ZAO_ENDPOINT_MONITOR_STREAMING_STATE_HPP_
ストリーミング状態を表すクラス.
Definition StreamingState.hpp:12
StreamingState(bool is_streaming)
StreamingStateオブジェクトを初期値指定で構築する.
Definition StreamingState.hpp:27
StreamingState()
StreamingStateオブジェクトをデフォルト構築する.
Definition StreamingState.hpp:18
bool IsStreaming() const noexcept
ストリーミング中か否か.
Definition StreamingState.hpp:33
Zao製品共通の名前空間
Definition FactoryInterface.hpp:11