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