#ifndef ITKIOMeshOBJ_EXPORT_H #define ITKIOMeshOBJ_EXPORT_H #ifdef ITK_STATIC # define ITKIOMeshOBJ_EXPORT # define ITKIOMeshOBJ_HIDDEN #else # ifndef ITKIOMeshOBJ_EXPORT # ifdef ITKIOMeshOBJ_EXPORTS /* We are building this library */ # define ITKIOMeshOBJ_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKIOMeshOBJ_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKIOMeshOBJ_HIDDEN # define ITKIOMeshOBJ_HIDDEN __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKIOMESHOBJ_DEPRECATED # define ITKIOMESHOBJ_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKIOMESHOBJ_DEPRECATED_EXPORT # define ITKIOMESHOBJ_DEPRECATED_EXPORT ITKIOMeshOBJ_EXPORT ITKIOMESHOBJ_DEPRECATED #endif #ifndef ITKIOMESHOBJ_DEPRECATED_NO_EXPORT # define ITKIOMESHOBJ_DEPRECATED_NO_EXPORT ITKIOMeshOBJ_HIDDEN ITKIOMESHOBJ_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKIOMESHOBJ_NO_DEPRECATED # define ITKIOMESHOBJ_NO_DEPRECATED # endif #endif #endif /* ITKIOMeshOBJ_EXPORT_H */