#ifndef ITKTENSOR_EXPORT_H #define ITKTENSOR_EXPORT_H #ifdef ITKTensor_BUILT_AS_STATIC # define ITKTENSOR_EXPORT # define ITKTENSOR_NO_EXPORT #else # ifndef ITKTENSOR_EXPORT # ifdef ITKTensor_EXPORTS /* We are building this library */ # define ITKTENSOR_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKTENSOR_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKTENSOR_NO_EXPORT # define ITKTENSOR_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKTENSOR_DEPRECATED # define ITKTENSOR_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKTENSOR_DEPRECATED_EXPORT # define ITKTENSOR_DEPRECATED_EXPORT ITKTENSOR_EXPORT ITKTENSOR_DEPRECATED #endif #ifndef ITKTENSOR_DEPRECATED_NO_EXPORT # define ITKTENSOR_DEPRECATED_NO_EXPORT ITKTENSOR_NO_EXPORT ITKTENSOR_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKTENSOR_NO_DEPRECATED # define ITKTENSOR_NO_DEPRECATED # endif #endif #endif /* ITKTENSOR_EXPORT_H */