1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #ifndef BOOST_SERIALIZATION_CONFIG_HPP
- #define BOOST_SERIALIZATION_CONFIG_HPP
- #include <boost/config.hpp>
- #include <boost/detail/workaround.hpp>
- #ifdef BOOST_SERIALIZATION_DECL
- #undef BOOST_SERIALIZATION_DECL
- #endif
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK)
- #if !defined(BOOST_DYN_LINK)
- #define BOOST_DYN_LINK
- #endif
-
- #if defined(BOOST_SERIALIZATION_SOURCE)
- #define BOOST_SERIALIZATION_DECL BOOST_SYMBOL_EXPORT
- #else
- #define BOOST_SERIALIZATION_DECL BOOST_SYMBOL_IMPORT
- #endif
- #endif
- #ifndef BOOST_SERIALIZATION_DECL
- #define BOOST_SERIALIZATION_DECL
- #endif
- #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SERIALIZATION_NO_LIB) \
- && !defined(BOOST_ARCHIVE_SOURCE) && !defined(BOOST_WARCHIVE_SOURCE) \
- && !defined(BOOST_SERIALIZATION_SOURCE)
-
-
-
-
- #define BOOST_LIB_NAME boost_serialization
-
-
-
- #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK)
- # define BOOST_DYN_LINK
- #endif
-
-
-
- #include <boost/config/auto_link.hpp>
- #endif
- #endif
|