Chris@16: //======================================================================= Chris@16: // Copyright 2001 University of Notre Dame. Chris@16: // Copyright 2003 Jeremy Siek Chris@16: // Authors: Lie-Quan Lee, Jeremy Siek, and Douglas Gregor Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. (See Chris@16: // accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: //======================================================================= Chris@16: Chris@16: #ifndef BOOST_GRAPH_DLL_IMPORT_EXPORT_HPP Chris@16: #define BOOST_GRAPH_DLL_IMPORT_EXPORT_HPP Chris@16: Chris@16: #include Chris@16: Chris@16: #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_GRAPH_DYN_LINK) Chris@16: # ifdef BOOST_GRAPH_SOURCE Chris@16: # define BOOST_GRAPH_DECL BOOST_SYMBOL_EXPORT Chris@16: # else Chris@16: # define BOOST_GRAPH_DECL BOOST_SYMBOL_IMPORT Chris@16: # endif // BOOST_GRAPH_SOURCE Chris@16: #endif // DYN_LINK Chris@16: Chris@16: #ifndef BOOST_GRAPH_DECL Chris@16: # define BOOST_GRAPH_DECL Chris@16: #endif Chris@16: Chris@16: #endif // BOOST_GRAPH_DLL_IMPORT_EXPORT_HPP