Public Types | Public Member Functions | Public Attributes | Private Member Functions | List of all members
boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS > Struct Template Reference

#include <function_template.hpp>

Public Types

typedef result_type(* invoker_type) (function_buffer &BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_ARGS)
 
typedef R result_type
 

Public Member Functions

template<typename F >
bool assign_to (F f, function_buffer &functor) const
 
template<typename F , typename Allocator >
bool assign_to_a (F f, function_buffer &functor, Allocator a) const
 
void clear (function_buffer &functor) const
 

Public Attributes

vtable_base base
 
invoker_type invoker
 

Private Member Functions

template<typename FunctionObj >
void assign_functor (FunctionObj f, function_buffer &functor, mpl::true_) const
 
template<typename FunctionObj >
void assign_functor (FunctionObj f, function_buffer &functor, mpl::false_) const
 
template<typename FunctionObj , typename Allocator >
void assign_functor_a (FunctionObj f, function_buffer &functor, Allocator, mpl::true_) const
 
template<typename FunctionObj , typename Allocator >
void assign_functor_a (FunctionObj f, function_buffer &functor, Allocator a, mpl::false_) const
 
template<typename FunctionPtr >
bool assign_to (FunctionPtr f, function_buffer &functor, function_ptr_tag) const
 
template<typename FunctionObj >
bool assign_to (FunctionObj f, function_buffer &functor, function_obj_tag) const
 
template<typename FunctionObj >
bool assign_to (const reference_wrapper< FunctionObj > &f, function_buffer &functor, function_obj_ref_tag) const
 
template<typename FunctionPtr , typename Allocator >
bool assign_to_a (FunctionPtr f, function_buffer &functor, Allocator, function_ptr_tag) const
 
template<typename FunctionObj , typename Allocator >
bool assign_to_a (FunctionObj f, function_buffer &functor, Allocator a, function_obj_tag) const
 
template<typename FunctionObj , typename Allocator >
bool assign_to_a (const reference_wrapper< FunctionObj > &f, function_buffer &functor, Allocator, function_obj_ref_tag) const
 

Detailed Description

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
struct boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >

vtable for a specific boost::function instance. This structure must be an aggregate so that we can use static initialization in boost::function's assign_to and assign_to_a members. It therefore cannot have any constructors, destructors, base classes, etc.

Definition at line 482 of file function_template.hpp.

Member Typedef Documentation

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
typedef result_type(* boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::invoker_type) (function_buffer &BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_ARGS)

Definition at line 490 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
typedef R boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::result_type

Definition at line 485 of file function_template.hpp.

Member Function Documentation

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj >
void boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_functor ( FunctionObj  f,
function_buffer functor,
mpl::true_   
) const
inlineprivate

Definition at line 570 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj >
void boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_functor ( FunctionObj  f,
function_buffer functor,
mpl::false_   
) const
inlineprivate

Definition at line 584 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj , typename Allocator >
void boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_functor_a ( FunctionObj  f,
function_buffer functor,
Allocator  ,
mpl::true_   
) const
inlineprivate

Definition at line 576 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj , typename Allocator >
void boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_functor_a ( FunctionObj  f,
function_buffer functor,
Allocator  a,
mpl::false_   
) const
inlineprivate

Definition at line 590 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename F >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to ( f,
function_buffer functor 
) const
inline

Definition at line 495 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionPtr >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to ( FunctionPtr  f,
function_buffer functor,
function_ptr_tag   
) const
inlineprivate

Definition at line 517 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to ( FunctionObj  f,
function_buffer functor,
function_obj_tag   
) const
inlineprivate

Definition at line 605 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to ( const reference_wrapper< FunctionObj > &  f,
function_buffer functor,
function_obj_ref_tag   
) const
inlineprivate

Definition at line 631 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename F , typename Allocator >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to_a ( f,
function_buffer functor,
Allocator  a 
) const
inline

Definition at line 501 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionPtr , typename Allocator >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to_a ( FunctionPtr  f,
function_buffer functor,
Allocator  ,
function_ptr_tag   
) const
inlineprivate

Definition at line 531 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj , typename Allocator >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to_a ( FunctionObj  f,
function_buffer functor,
Allocator  a,
function_obj_tag   
) const
inlineprivate

Definition at line 617 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
template<typename FunctionObj , typename Allocator >
bool boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::assign_to_a ( const reference_wrapper< FunctionObj > &  f,
function_buffer functor,
Allocator  ,
function_obj_ref_tag   
) const
inlineprivate

Definition at line 641 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
void boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::clear ( function_buffer functor) const
inline

Definition at line 507 of file function_template.hpp.

Member Data Documentation

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
vtable_base boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::base

Definition at line 648 of file function_template.hpp.

template<typename R BOOST_FUNCTION_COMMA BOOST_FUNCTION_TEMPLATE_PARMS>
invoker_type boost::detail::function::BOOST_FUNCTION_VTABLE< BOOST_FUNCTION_TEMPLATE_PARMS >::invoker

Definition at line 649 of file function_template.hpp.


The documentation for this struct was generated from the following file:


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:50:34