#ifndef VTKRENDERINGUI_EXPORT_H #define VTKRENDERINGUI_EXPORT_H #ifdef VTKRENDERINGUI_STATIC_DEFINE # define VTKRENDERINGUI_EXPORT # define VTKRENDERINGUI_NO_EXPORT #else # ifndef VTKRENDERINGUI_EXPORT # ifdef RenderingUI_EXPORTS /* We are building this library */ # define VTKRENDERINGUI_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define VTKRENDERINGUI_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef VTKRENDERINGUI_NO_EXPORT # define VTKRENDERINGUI_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef VTKRENDERINGUI_DEPRECATED # define VTKRENDERINGUI_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef VTKRENDERINGUI_DEPRECATED_EXPORT # define VTKRENDERINGUI_DEPRECATED_EXPORT VTKRENDERINGUI_EXPORT VTKRENDERINGUI_DEPRECATED #endif #ifndef VTKRENDERINGUI_DEPRECATED_NO_EXPORT # define VTKRENDERINGUI_DEPRECATED_NO_EXPORT VTKRENDERINGUI_NO_EXPORT VTKRENDERINGUI_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef VTKRENDERINGUI_NO_DEPRECATED # define VTKRENDERINGUI_NO_DEPRECATED # endif #endif /* AutoInit dependencies. */ #include "vtkRenderingCoreModule.h" /* AutoInit implementations. */ #ifdef vtkRenderingUI_AUTOINIT_INCLUDE #include vtkRenderingUI_AUTOINIT_INCLUDE #endif #ifdef vtkRenderingUI_AUTOINIT #include "vtkAutoInit.h" VTK_MODULE_AUTOINIT(vtkRenderingUI) #endif #endif /* VTKRENDERINGUI_EXPORT_H */