|  | 
|  | 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... 
 | 
|  | 
template<typename T_functor, typename T_obj1, typename T_obj2, typename T_obj3, typename T_obj4, typename T_obj5>
class sigc::track_obj_functor5< T_functor, T_obj1, T_obj2, T_obj3, T_obj4, T_obj5 >
track_obj_functor5 wraps a functor and stores 5 references to trackable objects. 
Use the convenience function track_object() to create an instance of track_obj_functor5.
- Template Parameters
- 
  
    | 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. |  
 
- Since libsigc++ 2.4: