blob: 37462144631520f1edcd86c51f13ad1fdaa16304 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
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).
6
7//------------------------------------------------------------------------------
8
Jeff Thompson3d613fd2013-10-15 15:39:04 -07009#ifndef NDNBOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
10#define NDNBOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -070011
12#include <ndnboost/function_types/detail/synthesize.hpp>
13#include <ndnboost/function_types/detail/to_sequence.hpp>
14
15namespace ndnboost
16{
17 namespace function_types
18 {
19 template<typename Types, typename Tag = null_tag> struct function_type
20 : detail::synthesize_func<typename detail::to_sequence<Types>::type, Tag>
21 {
Jeff Thompson3d613fd2013-10-15 15:39:04 -070022 NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(2,function_type,(Types,Tag))
Jeff Thompsona28eed82013-08-22 16:21:10 -070023 };
24 }
Jeff Thompson3d613fd2013-10-15 15:39:04 -070025 NDNBOOST_TT_AUX_TEMPLATE_ARITY_SPEC(2,function_types::function_type)
Jeff Thompsona28eed82013-08-22 16:21:10 -070026}
27
28#endif
29