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.6 KiB
C
55 lines
1.6 KiB
C
|
|
#ifndef VTKRENDERINGCONTEXT2D_EXPORT_H
|
|
#define VTKRENDERINGCONTEXT2D_EXPORT_H
|
|
|
|
#ifdef VTKRENDERINGCONTEXT2D_STATIC_DEFINE
|
|
# define VTKRENDERINGCONTEXT2D_EXPORT
|
|
# define VTKRENDERINGCONTEXT2D_NO_EXPORT
|
|
#else
|
|
# ifndef VTKRENDERINGCONTEXT2D_EXPORT
|
|
# ifdef RenderingContext2D_EXPORTS
|
|
/* We are building this library */
|
|
# define VTKRENDERINGCONTEXT2D_EXPORT __declspec(dllexport)
|
|
# else
|
|
/* We are using this library */
|
|
# define VTKRENDERINGCONTEXT2D_EXPORT __declspec(dllimport)
|
|
# endif
|
|
# endif
|
|
|
|
# ifndef VTKRENDERINGCONTEXT2D_NO_EXPORT
|
|
# define VTKRENDERINGCONTEXT2D_NO_EXPORT
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGCONTEXT2D_DEPRECATED
|
|
# define VTKRENDERINGCONTEXT2D_DEPRECATED __declspec(deprecated)
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGCONTEXT2D_DEPRECATED_EXPORT
|
|
# define VTKRENDERINGCONTEXT2D_DEPRECATED_EXPORT VTKRENDERINGCONTEXT2D_EXPORT VTKRENDERINGCONTEXT2D_DEPRECATED
|
|
#endif
|
|
|
|
#ifndef VTKRENDERINGCONTEXT2D_DEPRECATED_NO_EXPORT
|
|
# define VTKRENDERINGCONTEXT2D_DEPRECATED_NO_EXPORT VTKRENDERINGCONTEXT2D_NO_EXPORT VTKRENDERINGCONTEXT2D_DEPRECATED
|
|
#endif
|
|
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
# ifndef VTKRENDERINGCONTEXT2D_NO_DEPRECATED
|
|
# define VTKRENDERINGCONTEXT2D_NO_DEPRECATED
|
|
# endif
|
|
#endif
|
|
/* AutoInit dependencies. */
|
|
#include "vtkRenderingCoreModule.h"
|
|
|
|
|
|
/* AutoInit implementations. */
|
|
#ifdef vtkRenderingContext2D_AUTOINIT_INCLUDE
|
|
#include vtkRenderingContext2D_AUTOINIT_INCLUDE
|
|
#endif
|
|
#ifdef vtkRenderingContext2D_AUTOINIT
|
|
#include "vtkAutoInit.h"
|
|
VTK_MODULE_AUTOINIT(vtkRenderingContext2D)
|
|
#endif
|
|
|
|
#endif /* VTKRENDERINGCONTEXT2D_EXPORT_H */
|