Zao SDK for Jetson / libzao-endpoint API リファレンス 1.5.0.0 (2024-09-25)
Loading...
Searching...
No Matches
ZaoEndpoint.hpp
1#ifndef ZAO_ENDPOINT_ZAO_ENDPOINT_HPP_
2#define ZAO_ENDPOINT_ZAO_ENDPOINT_HPP_
3
4#include <memory>
5
6#include "ClientInterface.hpp"
7
12namespace zao {
13
18namespace endpoint {
19
27std::shared_ptr<ClientInterface> CreateClient();
28
36std::shared_ptr<ClientInterface> CreateClient(
37 const std::shared_ptr<spdlog::logger>& logger_reference);
38
39} // namespace endpoint
40} // namespace zao
41
42#endif // ZAO_ENDPOINT_ZAO_ENDPOINT_HPP_
std::shared_ptr< ClientInterface > CreateClient()
Clientオブジェクトを生成する。
Zao製品共通の名前空間
Definition FactoryInterface.hpp:11