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
1019 B
C

#ifndef VTKVIEWSQT_EXPORT_H
#define VTKVIEWSQT_EXPORT_H
#ifdef VTKVIEWSQT_STATIC_DEFINE
# define VTKVIEWSQT_EXPORT
# define VTKVIEWSQT_NO_EXPORT
#else
# ifndef VTKVIEWSQT_EXPORT
# ifdef ViewsQt_EXPORTS
/* We are building this library */
# define VTKVIEWSQT_EXPORT __declspec(dllexport)
# else
/* We are using this library */
# define VTKVIEWSQT_EXPORT __declspec(dllimport)
# endif
# endif
# ifndef VTKVIEWSQT_NO_EXPORT
# define VTKVIEWSQT_NO_EXPORT
# endif
#endif
#ifndef VTKVIEWSQT_DEPRECATED
# define VTKVIEWSQT_DEPRECATED __declspec(deprecated)
#endif
#ifndef VTKVIEWSQT_DEPRECATED_EXPORT
# define VTKVIEWSQT_DEPRECATED_EXPORT VTKVIEWSQT_EXPORT VTKVIEWSQT_DEPRECATED
#endif
#ifndef VTKVIEWSQT_DEPRECATED_NO_EXPORT
# define VTKVIEWSQT_DEPRECATED_NO_EXPORT VTKVIEWSQT_NO_EXPORT VTKVIEWSQT_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef VTKVIEWSQT_NO_DEPRECATED
# define VTKVIEWSQT_NO_DEPRECATED
# endif
#endif
#endif /* VTKVIEWSQT_EXPORT_H */