vdj_pipe
pipeline for processing DNA sequence data
config.hpp
Go to the documentation of this file.
1 
6 #ifndef VDJ_PIPE_CONFIG_HPP_
7 #define VDJ_PIPE_CONFIG_HPP_
8 
9 #include "boost/config.hpp"
10 
11 #ifndef BOOST_SYMBOL_EXPORT
12  #define BOOST_SYMBOL_EXPORT
13  #define BOOST_SYMBOL_IMPORT
14 #endif
15 
16 #if defined(VDJ_PIPE_DYN_LINK)
17 # if defined(VDJ_PIPE_SOURCE)
18 # define VDJ_PIPE_DECL BOOST_SYMBOL_EXPORT
19 # else
20 # define VDJ_PIPE_DECL BOOST_SYMBOL_IMPORT
21 # endif
22 #else
23 # define VDJ_PIPE_DECL
24 #endif
25 
26 #endif /* VDJ_PIPE_CONFIG_HPP_ */