]> git.donarmstrong.com Git - bamtools.git/blob - src/utils/utils_global.h
Merge pull request #39 from leecbaker/master
[bamtools.git] / src / utils / utils_global.h
1 // ***************************************************************************
2 // utils_global.h (c) 2010 Derek Barnett
3 // Marth Lab, Department of Biology, Boston College
4 // ---------------------------------------------------------------------------
5 // Last modified: 19 November 2010 (DB)
6 // ---------------------------------------------------------------------------
7 // Provides macros for exporting & importing BamTools-utils library symbols
8 // ***************************************************************************
9
10 #ifndef UTILS_GLOBAL_H
11 #define UTILS_GLOBAL_H
12
13 #include "shared/bamtools_global.h"
14
15 #ifdef BAMTOOLS_UTILS_LIBRARY
16 #  define UTILS_EXPORT BAMTOOLS_LIBRARY_EXPORT
17 #else
18 #  define UTILS_EXPORT BAMTOOLS_LIBRARY_IMPORT
19 #endif
20
21 #endif // UTILS_GLOBAL_H