00001
00002
00003
00004
00005
00006
00007
00008 #ifndef BOOST_LOCALE_CONFIG_HPP_INCLUDED
00009 #define BOOST_LOCALE_CONFIG_HPP_INCLUDED
00010
00011 #include <boost/config.hpp>
00012
00013 #ifdef BOOST_HAS_DECLSPEC
00014 # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_LOCALE_DYN_LINK)
00015 # ifdef BOOST_LOCALE_SOURCE
00016 # define BOOST_LOCALE_DECL __declspec(dllexport)
00017 # else
00018 # define BOOST_LOCALE_DECL __declspec(dllimport)
00019 # endif // BOOST_LOCALE_SOURCE
00020 # endif // DYN_LINK
00021 #endif // BOOST_HAS_DECLSPEC
00022
00023 #ifndef BOOST_LOCALE_DECL
00024 # define BOOST_LOCALE_DECL
00025 #endif
00026
00027
00028 #endif // boost/locale/config.hpp
00029
00030