register.hpp
来自「[2005最新C++经典著作].C++ Programming.新手必看的学VC」· HPP 代码 · 共 22 行
HPP
22 行
// Copyright (C) 2004 Arkadiy Vertleyb// Use, modification and distribution is subject to the Boost Software// License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)#ifndef MPL_REGISTER_HPP_INCLUDED#define MPL_REGISTER_HPP_INCLUDED#include <boost/spirit/typeof/type_encoding.hpp>#include <boost/spirit/typeof/template_encoding.hpp>#include <boost/spirit/typeof/concatenate.hpp>#include <boost/mpl/vector.hpp>#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()BOOST_TYPEOF_REGISTER_TYPE(boost::mpl::vector0<>);BOOST_TYPEOF_REGISTER_TEMPLATE(boost::mpl::vector1, 1);BOOST_TYPEOF_REGISTER_TEMPLATE(boost::mpl::vector2, 2);BOOST_TYPEOF_REGISTER_TEMPLATE(boost::mpl::vector3, 3);BOOST_TYPEOF_REGISTER_TEMPLATE(boost::mpl::vector4, 4);#endif//MPL_REGISTER_HPP_INCLUDED
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?