#ifndef ITKConvolution_EXPORT_H #define ITKConvolution_EXPORT_H #ifdef ITK_STATIC # define ITKConvolution_EXPORT # define ITKConvolution_HIDDEN #else # ifndef ITKConvolution_EXPORT # ifdef ITKConvolution_EXPORTS /* We are building this library */ # define ITKConvolution_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKConvolution_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKConvolution_HIDDEN # define ITKConvolution_HIDDEN __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKCONVOLUTION_DEPRECATED # define ITKCONVOLUTION_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKCONVOLUTION_DEPRECATED_EXPORT # define ITKCONVOLUTION_DEPRECATED_EXPORT ITKConvolution_EXPORT ITKCONVOLUTION_DEPRECATED #endif #ifndef ITKCONVOLUTION_DEPRECATED_NO_EXPORT # define ITKCONVOLUTION_DEPRECATED_NO_EXPORT ITKConvolution_HIDDEN ITKCONVOLUTION_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKCONVOLUTION_NO_DEPRECATED # define ITKCONVOLUTION_NO_DEPRECATED # endif #endif #endif /* ITKConvolution_EXPORT_H */