nttp_decl.hpp 844 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef BOOST_MPL_AUX_NTTP_DECL_HPP_INCLUDED
  2. #define BOOST_MPL_AUX_NTTP_DECL_HPP_INCLUDED
  3. // Copyright Aleksey Gurtovoy 2001-2004
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/mpl for documentation.
  10. // $Id$
  11. // $Date$
  12. // $Revision$
  13. #include <boost/mpl/aux_/config/nttp.hpp>
  14. #if defined(BOOST_MPL_CFG_NTTP_BUG)
  15. typedef bool _mpl_nttp_bool;
  16. typedef int _mpl_nttp_int;
  17. typedef unsigned _mpl_nttp_unsigned;
  18. typedef long _mpl_nttp_long;
  19. # include <boost/preprocessor/cat.hpp>
  20. # define BOOST_MPL_AUX_NTTP_DECL(T, x) BOOST_PP_CAT(_mpl_nttp_,T) x /**/
  21. #else
  22. # define BOOST_MPL_AUX_NTTP_DECL(T, x) T x /**/
  23. #endif
  24. #endif // BOOST_MPL_AUX_NTTP_DECL_HPP_INCLUDED