libsigc++
2.3.2
|
track_obj_functor5 wraps a functor and stores 5 references to trackable objects. More...
#include <sigc++/adaptors/track_obj.h>
Public Member Functions | |
track_obj_functor5 (const T_functor& _A_func, const T_obj1& _A_obj1, const T_obj2& _A_obj2, const T_obj3& _A_obj3, const T_obj4& _A_obj4, const T_obj5& _A_obj5) | |
Constructs a track_obj_functor5 object that wraps the passed functor and stores references to the passed trackable objects. More... | |
![]() | |
track_obj_functor1 (const T_functor& _A_func, const T_obj1& _A_obj1) | |
Constructs a track_obj_functor1 object that wraps the passed functor and stores a reference to the passed trackable object. More... | |
result_type | operator() () |
Invokes the wrapped functor. More... | |
template<typename T_arg1 > | |
deduce_result_type< T_arg1 >::type | operator() (T_arg1 _A_arg1) |
Invokes the wrapped functor passing on the arguments. More... | |
template<typename T_arg1 , typename T_arg2 > | |
deduce_result_type< T_arg1, T_arg2 >::type | operator() (T_arg1 _A_arg1, T_arg2 _A_arg2) |
Invokes the wrapped functor passing on the arguments. More... | |
template<typename T_arg1 , typename T_arg2 , typename T_arg3 > | |
deduce_result_type< T_arg1, T_arg2, T_arg3 >::type | operator() (T_arg1 _A_arg1, T_arg2 _A_arg2, T_arg3 _A_arg3) |
Invokes the wrapped functor passing on the arguments. More... | |
template<typename T_arg1 , typename T_arg2 , typename T_arg3 , typename T_arg4 > | |
deduce_result_type< T_arg1, T_arg2, T_arg3, T_arg4 >::type | operator() (T_arg1 _A_arg1, T_arg2 _A_arg2, T_arg3 _A_arg3, T_arg4 _A_arg4) |
Invokes the wrapped functor passing on the arguments. More... | |
template<typename T_arg1 , typename T_arg2 , typename T_arg3 , typename T_arg4 , typename T_arg5 > | |
deduce_result_type< T_arg1, T_arg2, T_arg3, T_arg4, T_arg5 > ::type | operator() (T_arg1 _A_arg1, T_arg2 _A_arg2, T_arg3 _A_arg3, T_arg4 _A_arg4, T_arg5 _A_arg5) |
Invokes the wrapped functor passing on the arguments. More... | |
template<typename T_arg1 , typename T_arg2 , typename T_arg3 , typename T_arg4 , typename T_arg5 , typename T_arg6 > | |
deduce_result_type< T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6 >::type | operator() (T_arg1 _A_arg1, T_arg2 _A_arg2, T_arg3 _A_arg3, T_arg4 _A_arg4, T_arg5 _A_arg5, T_arg6 _A_arg6) |
Invokes the wrapped functor passing on the arguments. More... | |
template<typename T_arg1 , typename T_arg2 , typename T_arg3 , typename T_arg4 , typename T_arg5 , typename T_arg6 , typename T_arg7 > | |
deduce_result_type< T_arg1, T_arg2, T_arg3, T_arg4, T_arg5, T_arg6, T_arg7 >::type | operator() (T_arg1 _A_arg1, T_arg2 _A_arg2, T_arg3 _A_arg3, T_arg4 _A_arg4, T_arg5 _A_arg5, T_arg6 _A_arg6, T_arg7 _A_arg7) |
Invokes the wrapped functor passing on the arguments. More... | |
![]() | |
adapts (const T_functor& _A_functor) | |
Constructs an adaptor that wraps the passed functor. More... | |
Additional Inherited Members | |
![]() | |
typedef adapts< T_functor > ::adaptor_type | adaptor_type |
typedef adaptor_type::result_type | result_type |
![]() | |
typedef adaptor_trait < T_functor >::adaptor_type | adaptor_type |
typedef adaptor_trait < T_functor >::result_type | result_type |
![]() | |
adaptor_type | functor_ |
Adaptor that is invoked from operator()(). More... | |
track_obj_functor5 wraps a functor and stores 5 references to trackable objects.
Use the convenience function track_obj() to create an instance of track_obj_functor5.
T_functor | The type of functor to wrap. |
T_obj1 | The type of a trackable object. |
T_obj2 | The type of a trackable object. |
T_obj3 | The type of a trackable object. |
T_obj4 | The type of a trackable object. |
T_obj5 | The type of a trackable object. |
|
inline |
Constructs a track_obj_functor5 object that wraps the passed functor and stores references to the passed trackable objects.
_A_func | Functor. |
_A_obj1 | Trackable object. |
_A_obj2 | Trackable object. |
_A_obj3 | Trackable object. |
_A_obj4 | Trackable object. |
_A_obj5 | Trackable object. |