123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef BOOST_SERIALIZATION_FORCE_INCLUDE_HPP
- #define BOOST_SERIALIZATION_FORCE_INCLUDE_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1020)
- # pragma once
- #endif
- #include <boost/config.hpp>
- #if defined(BOOST_HAS_DECLSPEC) && !defined(__COMO__)
- # if defined(__BORLANDC__)
- # define BOOST_DLLEXPORT __export
- # else
- # define BOOST_DLLEXPORT __declspec(dllexport)
- # endif
- #elif ! defined(_WIN32) && ! defined(_WIN64)
- # if defined(__MWERKS__)
- # define BOOST_DLLEXPORT __declspec(dllexport)
- # elif defined(__GNUC__) && (__GNUC__ >= 3)
- # define BOOST_USED __attribute__ ((used))
- # elif defined(__INTEL_COMPILER) && (BOOST_INTEL_CXX_VERSION >= 800)
- # define BOOST_USED __attribute__ ((used))
- # endif
- #endif
- #ifndef BOOST_USED
- # define BOOST_USED
- #endif
- #ifndef BOOST_DLLEXPORT
- # define BOOST_DLLEXPORT
- #endif
- #endif
|