VTK
LSDynaExport.h
Go to the documentation of this file.
1 #ifndef LSDynaExport_h
2 #define LSDynaExport_h
3 
4 #include <vtksys/Configure.h>
5 #include <string>
6 #include <iostream>
7 
8 #include "vtkABI.h"
9 
10 #define BUILD_SHARED_LIBS
11 
12 // Now set up all of the export macros
13 #if defined(BUILD_SHARED_LIBS)
14  #if defined(LSDyna_EXPORTS)
15  #define LSDyna_EXPORT VTK_ABI_EXPORT
16  #else
17  #define LSDyna_EXPORT VTK_ABI_IMPORT
18  #endif
19 #else
20  #define LSDyna_EXPORT
21 #endif
22 
23 #endif