sl@0: /* sl@0: * sl@0: * Copyright (c) 1998-2002 sl@0: * John Maddock sl@0: * sl@0: * Copyright (c) 2003-2004 sl@0: * Douglas Gregor sl@0: * sl@0: * Distributed under the Boost Software License, Version 1.0. (See sl@0: * accompanying file LICENSE_1_0.txt or copy at sl@0: * http://www.boost.org/LICENSE_1_0.txt) sl@0: * sl@0: */ sl@0: sl@0: #ifndef BOOST_SIGNALS_CONFIG_HPP sl@0: #define BOOST_SIGNALS_CONFIG_HPP sl@0: sl@0: #include sl@0: sl@0: #ifdef BOOST_HAS_DECLSPEC sl@0: # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK) sl@0: # ifdef BOOST_SIGNALS_SOURCE sl@0: # define BOOST_SIGNALS_DECL __declspec(dllexport) sl@0: # else sl@0: # define BOOST_SIGNALS_DECL __declspec(dllimport) sl@0: # endif // BOOST_SIGNALS_SOURCE sl@0: # endif // DYN_LINK sl@0: #endif // BOOST_HAS_DECLSPEC sl@0: sl@0: #ifndef BOOST_SIGNALS_DECL sl@0: # define BOOST_SIGNALS_DECL sl@0: #endif sl@0: sl@0: // Setup autolinking sl@0: #if !defined(BOOST_SIGNALS_SOURCE) && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SIGNALS_NO_LIB) sl@0: # define BOOST_LIB_NAME boost_signals sl@0: sl@0: # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SIGNALS_DYN_LINK) sl@0: # define BOOST_DYN_LINK sl@0: # endif sl@0: sl@0: # include sl@0: #endif // autolinking on sl@0: sl@0: #endif // BOOST_SIGNALS_CONFIG_HPP sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: