You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
C
55 lines
1.4 KiB
C
|
|
#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 __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define VTKRENDERINGUI_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef VTKRENDERINGUI_NO_EXPORT
|
|
# define VTKRENDERINGUI_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGUI_DEPRECATED
|
|
# define VTKRENDERINGUI_DEPRECATED __declspec(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
|
|
|
|
#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 */
|