fix doc example typo
[boost.git] / boost / function_types / function_type.hpp
blobc3b2c96b9469c66c8dbd7db07bfd35cbbe0f0224
2 // (C) Copyright Tobias Schwinger
3 //
4 // Use modification and distribution are subject to the boost Software License,
5 // Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
7 //------------------------------------------------------------------------------
9 #ifndef BOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
10 #define BOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
12 #include <boost/function_types/detail/synthesize.hpp>
13 #include <boost/function_types/detail/to_sequence.hpp>
15 namespace boost
17 namespace function_types
19 template<typename Types, typename Tag = null_tag> struct function_type
20 : detail::synthesize_func<typename detail::to_sequence<Types>::type, Tag>
22 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,function_type,(Types,Tag))
25 BOOST_TT_AUX_TEMPLATE_ARITY_SPEC(2,function_types::function_type)
28 #endif