Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:37:26

0001 //=======================================================================
0002 // Copyright 2001 University of Notre Dame.
0003 // Copyright 2003 Jeremy Siek
0004 // Authors: Lie-Quan Lee, Jeremy Siek, and Douglas Gregor
0005 //
0006 // Distributed under the Boost Software License, Version 1.0. (See
0007 // accompanying file LICENSE_1_0.txt or copy at
0008 // http://www.boost.org/LICENSE_1_0.txt)
0009 //=======================================================================
0010 
0011 #ifndef BOOST_GRAPH_DLL_IMPORT_EXPORT_HPP
0012 #define BOOST_GRAPH_DLL_IMPORT_EXPORT_HPP
0013 
0014 #include <boost/config.hpp>
0015 
0016 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_GRAPH_DYN_LINK)
0017 #ifdef BOOST_GRAPH_SOURCE
0018 #define BOOST_GRAPH_DECL BOOST_SYMBOL_EXPORT
0019 #else
0020 #define BOOST_GRAPH_DECL BOOST_SYMBOL_IMPORT
0021 #endif // BOOST_GRAPH_SOURCE
0022 #endif // DYN_LINK
0023 
0024 #ifndef BOOST_GRAPH_DECL
0025 #define BOOST_GRAPH_DECL
0026 #endif
0027 
0028 #endif // BOOST_GRAPH_DLL_IMPORT_EXPORT_HPP