#ifndef ITKFastMarching_EXPORT_H #define ITKFastMarching_EXPORT_H #ifdef ITK_STATIC # define ITKFastMarching_EXPORT # define ITKFastMarching_HIDDEN #else # ifndef ITKFastMarching_EXPORT # ifdef ITKFastMarching_EXPORTS /* We are building this library */ # define ITKFastMarching_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define ITKFastMarching_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef ITKFastMarching_HIDDEN # define ITKFastMarching_HIDDEN __attribute__((visibility("hidden"))) # endif #endif #ifndef ITKFASTMARCHING_DEPRECATED # define ITKFASTMARCHING_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef ITKFASTMARCHING_DEPRECATED_EXPORT # define ITKFASTMARCHING_DEPRECATED_EXPORT ITKFastMarching_EXPORT ITKFASTMARCHING_DEPRECATED #endif #ifndef ITKFASTMARCHING_DEPRECATED_NO_EXPORT # define ITKFASTMARCHING_DEPRECATED_NO_EXPORT ITKFastMarching_HIDDEN ITKFASTMARCHING_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef ITKFASTMARCHING_NO_DEPRECATED # define ITKFASTMARCHING_NO_DEPRECATED # endif #endif #endif /* ITKFastMarching_EXPORT_H */