⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function_type_result.hpp

📁 机器人开源项目orocos的源代码
💻 HPP
字号:
// (C) Copyright Jonathan Turkanis and Tobias Schwinger//// Use modification and distribution are subject to the boost Software License,// Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).#ifndef BOOST_FT_FUNCTION_TYPE_RESULT_HPP_INCLUDED#define BOOST_FT_FUNCTION_TYPE_RESULT_HPP_INCLUDED//------------------------------------------------------------------------------#include <boost/mpl/at.hpp>#include <boost/mpl/plus.hpp>// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#include <boost/function_types/function_type_signature.hpp>//------------------------------------------------------------------------------namespace boost {//------------------------------------------------------------------------------namespace function_types {  namespace detail  {    template<typename S,typename K> struct result_impl      : mpl::at_c< S, 0 >    { };    template<typename S>     struct result_impl <S,no_function>    { };  }  template<typename T> struct function_type_result    : detail::result_impl      < typename function_type_signature<T>::types      , detail::tag_core_type_id< typename function_type_signature<T>::kind >      >  { };}using function_types::function_type_result;//------------------------------------------------------------------------------} // namespace ::boost//------------------------------------------------------------------------------#endif // ndef BOOST_FT_FUNCTION_TYPE_PARAMETER_HPP_INCLUDED

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -