VTK
dox/GenericFiltering/Testing/Cxx/vtkBridgeExport.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkBridgeExport.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00022 #ifndef __vtkBridgeExport_h
00023 #define __vtkBridgeExport_h
00024 
00025 #include "vtkSystemIncludes.h"
00026 
00027 #if 1
00028 # define VTK_BRIDGE_EXPORT
00029 #else
00030 
00031 #if defined(WIN32) && defined(VTK_BUILD_SHARED_LIBS)
00032 
00033  #if defined(vtkBridge_EXPORTS)
00034   #define VTK_BRIDGE_EXPORT __declspec( dllexport ) 
00035  #else
00036   #define VTK_BRIDGE_EXPORT __declspec( dllimport ) 
00037  #endif
00038 #else
00039  #define VTK_BRIDGE_EXPORT
00040 #endif
00041 
00042 #endif //#if 1
00043 
00044 #endif