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.
50 lines
1.5 KiB
C
50 lines
1.5 KiB
C
|
|
#ifndef VTKRENDERINGVOLUMEOPENGL_EXPORT_H
|
|
#define VTKRENDERINGVOLUMEOPENGL_EXPORT_H
|
|
|
|
#ifdef VTKRENDERINGVOLUMEOPENGL_STATIC_DEFINE
|
|
# define VTKRENDERINGVOLUMEOPENGL_EXPORT
|
|
# define VTKRENDERINGVOLUMEOPENGL_NO_EXPORT
|
|
#else
|
|
# ifndef VTKRENDERINGVOLUMEOPENGL_EXPORT
|
|
# ifdef vtkRenderingVolumeOpenGL_EXPORTS
|
|
/* We are building this library */
|
|
# define VTKRENDERINGVOLUMEOPENGL_EXPORT __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define VTKRENDERINGVOLUMEOPENGL_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef VTKRENDERINGVOLUMEOPENGL_NO_EXPORT
|
|
# define VTKRENDERINGVOLUMEOPENGL_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGVOLUMEOPENGL_DEPRECATED
|
|
# define VTKRENDERINGVOLUMEOPENGL_DEPRECATED __declspec(deprecated)
|
|
# define VTKRENDERINGVOLUMEOPENGL_DEPRECATED_EXPORT VTKRENDERINGVOLUMEOPENGL_EXPORT __declspec(deprecated)
|
|
# define VTKRENDERINGVOLUMEOPENGL_DEPRECATED_NO_EXPORT VTKRENDERINGVOLUMEOPENGL_NO_EXPORT __declspec(deprecated)
|
|
#endif
|
|
|
|
#define DEFINE_NO_DEPRECATED 0
|
|
#if DEFINE_NO_DEPRECATED
|
|
# define VTKRENDERINGVOLUMEOPENGL_NO_DEPRECATED
|
|
#endif
|
|
|
|
/* AutoInit dependencies. */
|
|
#include "vtkRenderingOpenGLModule.h"
|
|
#include "vtkRenderingVolumeModule.h"
|
|
#include "vtkRenderingVolumeModule.h"
|
|
|
|
/* AutoInit implementations. */
|
|
#if defined(vtkRenderingVolumeOpenGL_INCLUDE)
|
|
# include vtkRenderingVolumeOpenGL_INCLUDE
|
|
#endif
|
|
#if defined(vtkRenderingVolumeOpenGL_AUTOINIT)
|
|
# include "vtkAutoInit.h"
|
|
VTK_AUTOINIT(vtkRenderingVolumeOpenGL)
|
|
#endif
|
|
|
|
#endif
|