#ifndef AIWARE_RUNTIME_INF_LIB_CPP_EXPORT_H #define AIWARE_RUNTIME_INF_LIB_CPP_EXPORT_H #ifdef AIWARE_RUNTIME_INF_LIB_CPP_STATIC_DEFINE # define AIWARE_RUNTIME_INF_LIB_CPP_EXPORT # define AIWARE_RUNTIME_INF_LIB_CPP_NO_EXPORT #else # ifndef AIWARE_RUNTIME_INF_LIB_CPP_EXPORT # ifdef aiware_runtime_inf_lib_cpp_EXPORTS /* We are building this library */ # define AIWARE_RUNTIME_INF_LIB_CPP_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define AIWARE_RUNTIME_INF_LIB_CPP_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef AIWARE_RUNTIME_INF_LIB_CPP_NO_EXPORT # define AIWARE_RUNTIME_INF_LIB_CPP_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED # define AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED_EXPORT # define AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED_EXPORT AIWARE_RUNTIME_INF_LIB_CPP_EXPORT AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED #endif #ifndef AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED_NO_EXPORT # define AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED_NO_EXPORT AIWARE_RUNTIME_INF_LIB_CPP_NO_EXPORT AIWARE_RUNTIME_INF_LIB_CPP_DEPRECATED #endif #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef AIWARE_RUNTIME_INF_LIB_CPP_NO_DEPRECATED # define AIWARE_RUNTIME_INF_LIB_CPP_NO_DEPRECATED # endif #endif #endif /* AIWARE_RUNTIME_INF_LIB_CPP_EXPORT_H */