CppCMS
config.h
1 //
2 // Copyright (c) 2009-2010 Artyom Beilis (Tonkikh)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 #ifndef BOOSTER_LOCALE_CONFIG_H_INCLUDED
9 #define BOOSTER_LOCALE_CONFIG_H_INCLUDED
10 
11 #include <booster/config.h>
12 
13 #ifdef BOOSTER_HAS_DECLSPEC
14 # if defined(BOOSTER_ALL_DYN_LINK) || defined(BOOSTER_LOCALE_DYN_LINK)
15 # ifdef BOOSTER_SOURCE
16 # define BOOSTER_API __declspec(dllexport)
17 # else
18 # define BOOSTER_API __declspec(dllimport)
19 # endif // BOOST_LOCALE_SOURCE
20 # endif // DYN_LINK
21 #endif // BOOST_HAS_DECLSPEC
22 
23 #ifndef BOOSTER_API
24 # define BOOSTER_API
25 #endif
26 
27 
28 #endif // boost/locale/config.hpp
29 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
30