#ifndef VTKIOENSIGHT_EXPORT_H #define VTKIOENSIGHT_EXPORT_H #ifdef VTKIOENSIGHT_STATIC_DEFINE # define VTKIOENSIGHT_EXPORT # define VTKIOENSIGHT_NO_EXPORT #else # ifndef VTKIOENSIGHT_EXPORT # ifdef IOEnSight_EXPORTS /* We are building this library */ # define VTKIOENSIGHT_EXPORT __declspec(dllexport) # else /* We are using this library */ # define VTKIOENSIGHT_EXPORT __declspec(dllimport) # endif # endif # ifndef VTKIOENSIGHT_NO_EXPORT # define VTKIOENSIGHT_NO_EXPORT # endif #endif #ifndef VTKIOENSIGHT_DEPRECATED # define VTKIOENSIGHT_DEPRECATED __declspec(deprecated) #endif #ifndef VTKIOENSIGHT_DEPRECATED_EXPORT # define VTKIOENSIGHT_DEPRECATED_EXPORT VTKIOENSIGHT_EXPORT VTKIOENSIGHT_DEPRECATED #endif #ifndef VTKIOENSIGHT_DEPRECATED_NO_EXPORT # define VTKIOENSIGHT_DEPRECATED_NO_EXPORT VTKIOENSIGHT_NO_EXPORT VTKIOENSIGHT_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef VTKIOENSIGHT_NO_DEPRECATED # define VTKIOENSIGHT_NO_DEPRECATED # endif #endif /* VTK-HeaderTest-Exclude: vtkIOEnSightModule.h */ /* Include ABI Namespace */ #include "vtkABINamespace.h" #endif /* VTKIOENSIGHT_EXPORT_H */