#ifndef ITKIONIFTI_EXPORT_H #define ITKIONIFTI_EXPORT_H #ifdef ITK_STATIC # define ITKIONIFTI_EXPORT # define ITKIONIFTI_HIDDEN #else # ifndef ITKIONIFTI_EXPORT # ifdef ITKIONIFTI_EXPORTS /* We are building this library */ # define ITKIONIFTI_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKIONIFTI_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKIONIFTI_HIDDEN # define ITKIONIFTI_HIDDEN __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKIONIFTI_DEPRECATED # define ITKIONIFTI_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKIONIFTI_DEPRECATED_EXPORT # define ITKIONIFTI_DEPRECATED_EXPORT ITKIONIFTI_EXPORT ITKIONIFTI_DEPRECATED #endif #ifndef ITKIONIFTI_DEPRECATED_NO_EXPORT # define ITKIONIFTI_DEPRECATED_NO_EXPORT ITKIONIFTI_HIDDEN ITKIONIFTI_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKIONIFTI_NO_DEPRECATED # define ITKIONIFTI_NO_DEPRECATED # endif #endif #endif /* ITKIONIFTI_EXPORT_H */