cyclors 0.4.0

Low-level API for the native CycloneDDS bindings (libddsc-sys).
Documentation
// Copyright(c) 2020 to 2022 ZettaScale Technology and others
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
// v. 1.0 which is available at
// http://www.eclipse.org/org/documents/edl-v10.php.
//
// SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause

#ifndef _DDS_PUBLIC_FEATURES_H_
#define _DDS_PUBLIC_FEATURES_H_

/* Whether or not support for DDS Security is included */
#cmakedefine DDS_HAS_SECURITY 1

/* Whether or not support for the lifespan QoS is included */
#cmakedefine DDS_HAS_LIFESPAN 1

/* Whether or not support for generating "deadline missed" events is included */
#cmakedefine DDS_HAS_DEADLINE_MISSED 1

/* Whether or not support for network partitions is included */
#cmakedefine DDS_HAS_NETWORK_PARTITIONS 1

/* Whether or not features dependent on OpenSSL are included */
#cmakedefine DDS_HAS_TCP_TLS 1

/* Whether or not support for type library is included */
#cmakedefine DDS_HAS_TYPELIB 1

/* Whether or not support for type discovery is included */
#cmakedefine DDS_HAS_TYPE_DISCOVERY 1

/* Whether or not support for topic discovery is included */
#cmakedefine DDS_HAS_TOPIC_DISCOVERY 1

/* Not for general use, specificly for testing psmx Cyclone DDS plugin */
#cmakedefine DDS_ALLOW_NESTED_DOMAIN 1

/* Not intended for general use, whether building a static library, specifically testing psmx and security */
#cmakedefine DDS_IS_STATIC_LIBRARY 1

/* Whether or not support for qos provider is included */
#cmakedefine DDS_HAS_QOS_PROVIDER 1

/* Whether or not support for DDS-over-TCP is included */
#cmakedefine DDS_HAS_TCP 1


#endif