VTK
|
00001 00002 #ifndef VTKCOMMONCORE_EXPORT_H 00003 #define VTKCOMMONCORE_EXPORT_H 00004 00005 #ifdef VTKCOMMONCORE_STATIC_DEFINE 00006 # define VTKCOMMONCORE_EXPORT 00007 # define VTKCOMMONCORE_NO_EXPORT 00008 #else 00009 # ifndef VTKCOMMONCORE_EXPORT 00010 # ifdef vtkCommonCore_EXPORTS 00011 /* We are building this library */ 00012 # define VTKCOMMONCORE_EXPORT __attribute__((visibility("default"))) 00013 # else 00014 /* We are using this library */ 00015 # define VTKCOMMONCORE_EXPORT __attribute__((visibility("default"))) 00016 # endif 00017 # endif 00018 00019 # ifndef VTKCOMMONCORE_NO_EXPORT 00020 # define VTKCOMMONCORE_NO_EXPORT __attribute__((visibility("hidden"))) 00021 # endif 00022 #endif 00023 00024 #ifndef VTKCOMMONCORE_DEPRECATED 00025 # define VTKCOMMONCORE_DEPRECATED __attribute__ ((__deprecated__)) 00026 # define VTKCOMMONCORE_DEPRECATED_EXPORT VTKCOMMONCORE_EXPORT __attribute__ ((__deprecated__)) 00027 # define VTKCOMMONCORE_DEPRECATED_NO_EXPORT VTKCOMMONCORE_NO_EXPORT __attribute__ ((__deprecated__)) 00028 #endif 00029 00030 #define DEFINE_NO_DEPRECATED 0 00031 #if DEFINE_NO_DEPRECATED 00032 # define VTKCOMMONCORE_NO_DEPRECATED 00033 #endif 00034 00035 00036 00037 #endif