12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #include <boost/config.hpp>
- #include <boost/detail/workaround.hpp>
- #include <boost/preprocessor/facilities/empty.hpp>
- #ifdef BOOST_SERIALIZATION_DECL
- #undef BOOST_SERIALIZATION_DECL
- #endif
- #ifdef BOOST_HAS_DECLSPEC
- #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)
- #if defined(__BORLANDC__)
- #define BOOST_SERIALIZATION_DECL(T) T __export
- #else
- #define BOOST_SERIALIZATION_DECL(T) __declspec(dllexport) T
- #endif
- #else
- #if defined(__BORLANDC__)
- #define BOOST_SERIALIZATION_DECL(T) T __import
- #else
- #define BOOST_SERIALIZATION_DECL(T) __declspec(dllimport) T
- #endif
- #endif
- #endif
- #endif
- #ifndef BOOST_SERIALIZATION_DECL
- #define BOOST_SERIALIZATION_DECL(T) T
- #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
|