Zao SDK for Jetson / libzep API Reference
Loading...
Searching...
No Matches
SinkStreamInterface.hpp
1/*
2 * Copyright (c) 2022-2023, Soliton Systems K.K. All rights reserved.
3 * Use in source and binary forms, with or without modification,
4 * is permitted provided that the following a condition is met:
5 *
6 * Use is permitted only in accordance with the terms and
7 * conditions set forth in the Software License Agreement available
8 * at https://zao-sdk.org/license-agreement/.
9 */
10#ifndef ZEP_SINK_STREAM_INTERFACE_HPP_
11#define ZEP_SINK_STREAM_INTERFACE_HPP_
12
13namespace zep {
14
18class SinkStreamInterface {
19 public:
20 virtual ~SinkStreamInterface() noexcept = default;
21};
22
26class SinkStreamCallbackInterface {
27 public:
28 virtual ~SinkStreamCallbackInterface() noexcept = default;
29};
30
31} // namespace zep
32
33#endif // ZEP_SINK_STREAM_INTERFACE_HPP_
Namespace for ZEP SDK.
Definition FactoryInterface.hpp:19