CppCMS
booster/locale/config.h
00001 //
00002 //  Copyright (c) 2009-2010 Artyom Beilis (Tonkikh)
00003 //
00004 //  Distributed under the Boost Software License, Version 1.0. (See
00005 //  accompanying file LICENSE_1_0.txt or copy at
00006 //  http://www.boost.org/LICENSE_1_0.txt)
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 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
00030