43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
|
|
|
||
|
|
#ifndef VTKIOCESIUM3DTILES_EXPORT_H
|
||
|
|
#define VTKIOCESIUM3DTILES_EXPORT_H
|
||
|
|
|
||
|
|
#ifdef VTKIOCESIUM3DTILES_STATIC_DEFINE
|
||
|
|
# define VTKIOCESIUM3DTILES_EXPORT
|
||
|
|
# define VTKIOCESIUM3DTILES_NO_EXPORT
|
||
|
|
#else
|
||
|
|
# ifndef VTKIOCESIUM3DTILES_EXPORT
|
||
|
|
# ifdef IOCesium3DTiles_EXPORTS
|
||
|
|
/* We are building this library */
|
||
|
|
# define VTKIOCESIUM3DTILES_EXPORT __declspec(dllexport)
|
||
|
|
# else
|
||
|
|
/* We are using this library */
|
||
|
|
# define VTKIOCESIUM3DTILES_EXPORT __declspec(dllimport)
|
||
|
|
# endif
|
||
|
|
# endif
|
||
|
|
|
||
|
|
# ifndef VTKIOCESIUM3DTILES_NO_EXPORT
|
||
|
|
# define VTKIOCESIUM3DTILES_NO_EXPORT
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKIOCESIUM3DTILES_DEPRECATED
|
||
|
|
# define VTKIOCESIUM3DTILES_DEPRECATED __declspec(deprecated)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKIOCESIUM3DTILES_DEPRECATED_EXPORT
|
||
|
|
# define VTKIOCESIUM3DTILES_DEPRECATED_EXPORT VTKIOCESIUM3DTILES_EXPORT VTKIOCESIUM3DTILES_DEPRECATED
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef VTKIOCESIUM3DTILES_DEPRECATED_NO_EXPORT
|
||
|
|
# define VTKIOCESIUM3DTILES_DEPRECATED_NO_EXPORT VTKIOCESIUM3DTILES_NO_EXPORT VTKIOCESIUM3DTILES_DEPRECATED
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
||
|
|
# ifndef VTKIOCESIUM3DTILES_NO_DEPRECATED
|
||
|
|
# define VTKIOCESIUM3DTILES_NO_DEPRECATED
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* VTKIOCESIUM3DTILES_EXPORT_H */
|