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.5 KiB
C
55 lines
1.5 KiB
C
3 weeks ago
|
|
||
|
#ifndef VTKDOMAINSCHEMISTRY_EXPORT_H
|
||
|
#define VTKDOMAINSCHEMISTRY_EXPORT_H
|
||
|
|
||
|
#ifdef VTKDOMAINSCHEMISTRY_STATIC_DEFINE
|
||
|
# define VTKDOMAINSCHEMISTRY_EXPORT
|
||
|
# define VTKDOMAINSCHEMISTRY_NO_EXPORT
|
||
|
#else
|
||
|
# ifndef VTKDOMAINSCHEMISTRY_EXPORT
|
||
|
# ifdef DomainsChemistry_EXPORTS
|
||
|
/* We are building this library */
|
||
|
# define VTKDOMAINSCHEMISTRY_EXPORT __declspec(dllexport)
|
||
|
# else
|
||
|
/* We are using this library */
|
||
|
# define VTKDOMAINSCHEMISTRY_EXPORT __declspec(dllimport)
|
||
|
# endif
|
||
|
# endif
|
||
|
|
||
|
# ifndef VTKDOMAINSCHEMISTRY_NO_EXPORT
|
||
|
# define VTKDOMAINSCHEMISTRY_NO_EXPORT
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#ifndef VTKDOMAINSCHEMISTRY_DEPRECATED
|
||
|
# define VTKDOMAINSCHEMISTRY_DEPRECATED __declspec(deprecated)
|
||
|
#endif
|
||
|
|
||
|
#ifndef VTKDOMAINSCHEMISTRY_DEPRECATED_EXPORT
|
||
|
# define VTKDOMAINSCHEMISTRY_DEPRECATED_EXPORT VTKDOMAINSCHEMISTRY_EXPORT VTKDOMAINSCHEMISTRY_DEPRECATED
|
||
|
#endif
|
||
|
|
||
|
#ifndef VTKDOMAINSCHEMISTRY_DEPRECATED_NO_EXPORT
|
||
|
# define VTKDOMAINSCHEMISTRY_DEPRECATED_NO_EXPORT VTKDOMAINSCHEMISTRY_NO_EXPORT VTKDOMAINSCHEMISTRY_DEPRECATED
|
||
|
#endif
|
||
|
|
||
|
#if 0 /* DEFINE_NO_DEPRECATED */
|
||
|
# ifndef VTKDOMAINSCHEMISTRY_NO_DEPRECATED
|
||
|
# define VTKDOMAINSCHEMISTRY_NO_DEPRECATED
|
||
|
# endif
|
||
|
#endif
|
||
|
/* AutoInit dependencies. */
|
||
|
#include "vtkRenderingCoreModule.h"
|
||
|
|
||
|
|
||
|
/* AutoInit implementations. */
|
||
|
#ifdef vtkDomainsChemistry_AUTOINIT_INCLUDE
|
||
|
#include vtkDomainsChemistry_AUTOINIT_INCLUDE
|
||
|
#endif
|
||
|
#ifdef vtkDomainsChemistry_AUTOINIT
|
||
|
#include "vtkAutoInit.h"
|
||
|
VTK_MODULE_AUTOINIT(vtkDomainsChemistry)
|
||
|
#endif
|
||
|
|
||
|
#endif /* VTKDOMAINSCHEMISTRY_EXPORT_H */
|