]> git.lyx.org Git - lyx.git/blob - boost/boost/mpl/aux_/value_wknd.hpp
06304ed0a070c1b06ab93b2419fc365035b813f9
[lyx.git] / boost / boost / mpl / aux_ / value_wknd.hpp
1 //-----------------------------------------------------------------------------
2 // boost mpl/aux_/value_wknd.hpp header file
3 // See http://www.boost.org for updates, documentation, and revision history.
4 //-----------------------------------------------------------------------------
5 //
6 // Copyright (c) 2000-02
7 // Aleksey Gurtovoy
8 //
9 // Permission to use, copy, modify, distribute and sell this software
10 // and its documentation for any purpose is hereby granted without fee, 
11 // provided that the above copyright notice appears in all copies and 
12 // that both the copyright notice and this permission notice appear in 
13 // supporting documentation. No representations are made about the 
14 // suitability of this software for any purpose. It is provided "as is" 
15 // without express or implied warranty.
16
17 #ifndef BOOST_MPL_AUX_VALUE_WKND_HPP_INCLUDED
18 #define BOOST_MPL_AUX_VALUE_WKND_HPP_INCLUDED
19
20 #include "boost/mpl/aux_/config/eti.hpp"
21
22 #if defined(__BORLANDC__) && (__BORLANDC__ <= 0x561 || !defined(BOOST_STRICT_CONFIG)) \
23  || defined(BOOST_MPL_MSVC_60_ETI_BUG)
24  
25 #   include "boost/mpl/int.hpp"
26
27 namespace boost { namespace mpl { namespace aux {
28
29 template< typename C_ >
30 struct value_wknd
31     : C_
32 {
33 };
34
35 #if defined(BOOST_MPL_MSVC_60_ETI_BUG)
36 template<>
37 struct value_wknd<int>
38     : int_<1>
39 {
40 };
41 #endif
42
43 }}} // namespace boost::mpl::aux
44
45 #   if !defined(BOOST_MPL_MSVC_60_ETI_BUG)
46 #       define BOOST_MPL_AUX_VALUE_WKND(C) ::boost::mpl::aux::value_wknd< C >
47 #       define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) BOOST_MPL_AUX_VALUE_WKND(C)
48 #   else
49 #       define BOOST_MPL_AUX_VALUE_WKND(C) C
50 #       define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) ::boost::mpl::aux::value_wknd< C >
51 #   endif
52
53 #else
54
55 #   define BOOST_MPL_AUX_VALUE_WKND(C) C
56 #   define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) C
57
58 #endif // __BORLANDC__ || BOOST_MPL_MSVC_60_ETI_BUG
59
60 #endif // BOOST_MPL_AUX_VALUE_WKND_HPP_INCLUDED