-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathapi.hxx
More file actions
52 lines (50 loc) · 1.58 KB
/
api.hxx
File metadata and controls
52 lines (50 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// Copyright (c) 2023 ZettaScale Technology
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
//
// Contributors:
// ZettaScale Zenoh Team, <zenoh@zettascale.tech>
#pragma once
#include "api/bytes.hxx"
#include "api/channels.hxx"
#include "api/closures.hxx"
#include "api/config.hxx"
#include "api/encoding.hxx"
#include "api/enums.hxx"
#include "api/hello.hxx"
#include "api/id.hxx"
#include "api/keyexpr.hxx"
#if defined(ZENOHCXX_ZENOHC) || Z_FEATURE_LIVELINESS == 1
#include "api/liveliness.hxx"
#endif
#include "api/logging.hxx"
#include "api/publisher.hxx"
#include "api/query.hxx"
#include "api/query_consolidation.hxx"
#include "api/queryable.hxx"
#include "api/reply.hxx"
#include "api/sample.hxx"
#include "api/scout.hxx"
#if defined(ZENOHCXX_ZENOHC) && defined(Z_FEATURE_UNSTABLE_API)
#include "api/close.hxx"
#endif
#include "api/session.hxx"
#include "api/subscriber.hxx"
#include "api/timestamp.hxx"
#if (defined(ZENOHCXX_ZENOHC) || Z_FEATURE_QUERY == 1) && defined(Z_FEATURE_UNSTABLE_API)
#include "api/querier.hxx"
#endif
#if defined(Z_FEATURE_SHARED_MEMORY) && defined(Z_FEATURE_UNSTABLE_API)
#include "api/shm/shm.hxx"
#endif
#include "api/ext/serialization.hxx"
#if defined(ZENOHCXX_ZENOHC) && defined(Z_FEATURE_UNSTABLE_API)
#include "api/ext/session_ext.hxx"
#include "api/matching.hxx"
#endif