iceoryx_binding_c 2.0.5
Loading...
Searching...
No Matches
api.h
1// Copyright (c) 2021 - 2022 by Apex.AI Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// SPDX-License-Identifier: Apache-2.0
16
17#ifndef IOX_BINDING_C_API_H
18#define IOX_BINDING_C_API_H
19
20// Provides the complete iceoryx C API in one header.
21
22#include "chunk.h"
23#include "client.h"
24#include "config.h"
25#include "enums.h"
26#include "listener.h"
27#include "log.h"
28#include "node.h"
29#include "notification_info.h"
30#include "publisher.h"
31#include "request_header.h"
32#include "response_header.h"
33#include "runtime.h"
34#include "server.h"
35#include "service_description.h"
36#include "service_discovery.h"
37#include "subscriber.h"
38#include "types.h"
39#include "user_trigger.h"
40#include "wait_set.h"
41
42#endif