6
|
1 // ***************************************************************************
|
|
2 // api_global.h (c) 2010 Derek Barnett
|
|
3 // Marth Lab, Department of Biology, Boston College
|
|
4 // All rights reserved.
|
|
5 // ---------------------------------------------------------------------------
|
|
6 // Last modified: 19 November 2010 (DB)
|
|
7 // ---------------------------------------------------------------------------
|
|
8 // Provides macros for exporting & importing BamTools API library symbols
|
|
9 // ***************************************************************************
|
|
10
|
|
11 #ifndef API_GLOBAL_H
|
|
12 #define API_GLOBAL_H
|
|
13
|
|
14 #include "bamtools_global.h"
|
|
15
|
|
16 #ifdef BAMTOOLS_API_LIBRARY
|
|
17 # define API_EXPORT BAMTOOLS_LIBRARY_EXPORT
|
|
18 #else
|
|
19 # define API_EXPORT BAMTOOLS_LIBRARY_IMPORT
|
|
20 #endif
|
|
21
|
|
22 #endif // API_GLOBAL_H
|