Zao SDK for Jetson / libzao-endpoint API リファレンス 1.2.0.0 (2023-10-30)
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
11namespace zao {
12
16namespace endpoint {
17
23std::shared_ptr<ClientInterface> CreateClient();
24
30std::shared_ptr<ClientInterface> CreateClient(
31 const std::shared_ptr<spdlog::logger>& logger_reference);
32
33} // namespace endpoint
34} // namespace zao
35
36#endif // ZAO_ENDPOINT_ZAO_ENDPOINT_HPP_
std::shared_ptr< ClientInterface > CreateClient()
Clientオブジェクトを生成する。
Zao製品共通の名前空間
Definition FactoryInterface.hpp:11