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.0 KiB
C

#ifndef VTKIOVERAOUT_EXPORT_H
#define VTKIOVERAOUT_EXPORT_H
#ifdef VTKIOVERAOUT_STATIC_DEFINE
# define VTKIOVERAOUT_EXPORT
# define VTKIOVERAOUT_NO_EXPORT
#else
# ifndef VTKIOVERAOUT_EXPORT
# ifdef IOVeraOut_EXPORTS
/* We are building this library */
# define VTKIOVERAOUT_EXPORT __declspec(dllexport)
# else
/* We are using this library */
# define VTKIOVERAOUT_EXPORT __declspec(dllimport)
# endif
# endif
# ifndef VTKIOVERAOUT_NO_EXPORT
# define VTKIOVERAOUT_NO_EXPORT
# endif
#endif
#ifndef VTKIOVERAOUT_DEPRECATED
# define VTKIOVERAOUT_DEPRECATED __declspec(deprecated)
#endif
#ifndef VTKIOVERAOUT_DEPRECATED_EXPORT
# define VTKIOVERAOUT_DEPRECATED_EXPORT VTKIOVERAOUT_EXPORT VTKIOVERAOUT_DEPRECATED
#endif
#ifndef VTKIOVERAOUT_DEPRECATED_NO_EXPORT
# define VTKIOVERAOUT_DEPRECATED_NO_EXPORT VTKIOVERAOUT_NO_EXPORT VTKIOVERAOUT_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef VTKIOVERAOUT_NO_DEPRECATED
# define VTKIOVERAOUT_NO_DEPRECATED
# endif
#endif
#endif /* VTKIOVERAOUT_EXPORT_H */