comparison spp/src/api_global.h @ 6:ce08b0efa3fd draft

Uploaded
author zzhou
date Tue, 27 Nov 2012 16:11:40 -0500
parents
children
comparison
equal deleted inserted replaced
5:608a8e0eac56 6:ce08b0efa3fd
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