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.
nmWTAI-Platform/3rd/VTK7.1/include/vtkRenderingCoreModule.h

48 lines
1.2 KiB
C

#ifndef VTKRENDERINGCORE_EXPORT_H
#define VTKRENDERINGCORE_EXPORT_H
#ifdef VTKRENDERINGCORE_STATIC_DEFINE
# define VTKRENDERINGCORE_EXPORT
# define VTKRENDERINGCORE_NO_EXPORT
#else
# ifndef VTKRENDERINGCORE_EXPORT
# ifdef vtkRenderingCore_EXPORTS
/* We are building this library */
# define VTKRENDERINGCORE_EXPORT __declspec(dllexport)
# else
/* We are using this library */
# define VTKRENDERINGCORE_EXPORT __declspec(dllimport)
# endif
# endif
# ifndef VTKRENDERINGCORE_NO_EXPORT
# define VTKRENDERINGCORE_NO_EXPORT
# endif
#endif
#ifndef VTKRENDERINGCORE_DEPRECATED
# define VTKRENDERINGCORE_DEPRECATED __declspec(deprecated)
# define VTKRENDERINGCORE_DEPRECATED_EXPORT VTKRENDERINGCORE_EXPORT __declspec(deprecated)
# define VTKRENDERINGCORE_DEPRECATED_NO_EXPORT VTKRENDERINGCORE_NO_EXPORT __declspec(deprecated)
#endif
#define DEFINE_NO_DEPRECATED 0
#if DEFINE_NO_DEPRECATED
# define VTKRENDERINGCORE_NO_DEPRECATED
#endif
/* AutoInit dependencies. */
#include "vtkFiltersCoreModule.h"
/* AutoInit implementations. */
#if defined(vtkRenderingCore_INCLUDE)
# include vtkRenderingCore_INCLUDE
#endif
#if defined(vtkRenderingCore_AUTOINIT)
# include "vtkAutoInit.h"
VTK_AUTOINIT(vtkRenderingCore)
#endif
#endif