📄 numbered.hpp
字号:
// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION#if !defined(BOOST_PP_IS_ITERATING)// Copyright Aleksey Gurtovoy 2000-2004//// Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt)//// See http://www.boost.org/libs/mpl for documentation.// $Source: /CVSROOT/CGAL/Packages/Boost/include/boost/mpl/map/aux_/numbered.hpp,v $// $Date: 2004/11/20 10:42:13 $// $Revision: 1.1.1.1 $#else#include <boost/mpl/aux_/config/typeof.hpp>#include <boost/preprocessor/enum_params.hpp>#include <boost/preprocessor/dec.hpp>#include <boost/preprocessor/cat.hpp>#define i_ BOOST_PP_FRAME_ITERATION(1)# define AUX778076_MAP_TAIL(map, i_, P) \ BOOST_PP_CAT(map,i_)< \ BOOST_PP_ENUM_PARAMS(i_, P) \ > \ /**/#if defined(BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES)template< BOOST_PP_ENUM_PARAMS(i_, typename P) >struct BOOST_PP_CAT(map,i_) : m_item< typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::first , typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::second , AUX778076_MAP_TAIL(map,BOOST_PP_DEC(i_),P) >{};#else // "brute force" implementationtemplate< typename Map>struct m_at<Map,BOOST_PP_DEC(i_)>{ typedef typename Map::BOOST_PP_CAT(item,BOOST_PP_DEC(i_)) type;};template< typename Key, typename T, typename Base >struct m_item<i_,Key,T,Base> : m_item_<Key,T,Base>{ typedef pair<Key,T> BOOST_PP_CAT(item,BOOST_PP_DEC(i_));};template< BOOST_PP_ENUM_PARAMS(i_, typename P) >struct BOOST_PP_CAT(map,i_) : m_item< i_ , typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::first , typename BOOST_PP_CAT(P,BOOST_PP_DEC(i_))::second , AUX778076_MAP_TAIL(map,BOOST_PP_DEC(i_),P) >{};#endif // BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES# undef AUX778076_MAP_TAIL#undef i_#endif // BOOST_PP_IS_ITERATING
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -