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.

43 lines
1.1 KiB
C

#ifndef VTKGEOVISCORE_EXPORT_H
#define VTKGEOVISCORE_EXPORT_H
#ifdef VTKGEOVISCORE_STATIC_DEFINE
# define VTKGEOVISCORE_EXPORT
# define VTKGEOVISCORE_NO_EXPORT
#else
# ifndef VTKGEOVISCORE_EXPORT
# ifdef GeovisCore_EXPORTS
/* We are building this library */
# define VTKGEOVISCORE_EXPORT __declspec(dllexport)
# else
/* We are using this library */
# define VTKGEOVISCORE_EXPORT __declspec(dllimport)
# endif
# endif
# ifndef VTKGEOVISCORE_NO_EXPORT
# define VTKGEOVISCORE_NO_EXPORT
# endif
#endif
#ifndef VTKGEOVISCORE_DEPRECATED
# define VTKGEOVISCORE_DEPRECATED __declspec(deprecated)
#endif
#ifndef VTKGEOVISCORE_DEPRECATED_EXPORT
# define VTKGEOVISCORE_DEPRECATED_EXPORT VTKGEOVISCORE_EXPORT VTKGEOVISCORE_DEPRECATED
#endif
#ifndef VTKGEOVISCORE_DEPRECATED_NO_EXPORT
# define VTKGEOVISCORE_DEPRECATED_NO_EXPORT VTKGEOVISCORE_NO_EXPORT VTKGEOVISCORE_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef VTKGEOVISCORE_NO_DEPRECATED
# define VTKGEOVISCORE_NO_DEPRECATED
# endif
#endif
#endif /* VTKGEOVISCORE_EXPORT_H */