#ifndef VTKIOASYNCHRONOUS_EXPORT_H #define VTKIOASYNCHRONOUS_EXPORT_H #ifdef VTKIOASYNCHRONOUS_STATIC_DEFINE # define VTKIOASYNCHRONOUS_EXPORT # define VTKIOASYNCHRONOUS_NO_EXPORT #else # ifndef VTKIOASYNCHRONOUS_EXPORT # ifdef IOAsynchronous_EXPORTS /* We are building this library */ # define VTKIOASYNCHRONOUS_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define VTKIOASYNCHRONOUS_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef VTKIOASYNCHRONOUS_NO_EXPORT # define VTKIOASYNCHRONOUS_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef VTKIOASYNCHRONOUS_DEPRECATED # define VTKIOASYNCHRONOUS_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef VTKIOASYNCHRONOUS_DEPRECATED_EXPORT # define VTKIOASYNCHRONOUS_DEPRECATED_EXPORT VTKIOASYNCHRONOUS_EXPORT VTKIOASYNCHRONOUS_DEPRECATED #endif #ifndef VTKIOASYNCHRONOUS_DEPRECATED_NO_EXPORT # define VTKIOASYNCHRONOUS_DEPRECATED_NO_EXPORT VTKIOASYNCHRONOUS_NO_EXPORT VTKIOASYNCHRONOUS_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef VTKIOASYNCHRONOUS_NO_DEPRECATED # define VTKIOASYNCHRONOUS_NO_DEPRECATED # endif #endif #endif /* VTKIOASYNCHRONOUS_EXPORT_H */