Sha256: 7f65c074650c92f93357821df81b343a9c14207ffd76c649ea5b0013c8dec8fd
Contents?: true
Size: 922 Bytes
Versions: 1
Compression:
Stored size: 922 Bytes
Contents
// (C) Copyright 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_POINTER_HPP_INCLUDED #define BOOST_FT_FUNCTION_POINTER_HPP_INCLUDED #include <boost/mpl/aux_/lambda_support.hpp> #include <boost/type_traits/detail/template_arity_spec.hpp> #include <boost/function_types/function_type.hpp> namespace boost { namespace function_types { template<typename Types, typename Tag = null_tag> struct function_pointer { typedef typename function_types::function_type<Types,Tag>::type * type; BOOST_MPL_AUX_LAMBDA_SUPPORT(2,function_pointer,(Types,Tag)) }; } BOOST_TT_AUX_TEMPLATE_ARITY_SPEC(2,function_types::function_pointer) } #endif
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-ogre-0.0.1-x86-mingw32 | deps/include/boost/function_types/function_pointer.hpp |