#ifndef ITKIOBMP_EXPORT_H #define ITKIOBMP_EXPORT_H #ifdef ITK_STATIC # define ITKIOBMP_EXPORT # define ITKIOBMP_HIDDEN #else # ifndef ITKIOBMP_EXPORT # ifdef ITKIOBMP_EXPORTS /* We are building this library */ # define ITKIOBMP_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKIOBMP_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKIOBMP_HIDDEN # define ITKIOBMP_HIDDEN __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKIOBMP_DEPRECATED # define ITKIOBMP_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKIOBMP_DEPRECATED_EXPORT # define ITKIOBMP_DEPRECATED_EXPORT ITKIOBMP_EXPORT ITKIOBMP_DEPRECATED #endif #ifndef ITKIOBMP_DEPRECATED_NO_EXPORT # define ITKIOBMP_DEPRECATED_NO_EXPORT ITKIOBMP_HIDDEN ITKIOBMP_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKIOBMP_NO_DEPRECATED # define ITKIOBMP_NO_DEPRECATED # endif #endif #endif /* ITKIOBMP_EXPORT_H */