NAME
A class of omni
omni::delegate6
A class of omni
#include <omni/delegate/6.hpp>
delegate6
omni::delegate6::delegate6()
omni::delegate6::~delegate6()
template < ret_t (*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) > static delegate6 omni::delegate6::bind()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) const > static delegate6 omni::delegate6::bind_const(const T& obj)
inline void omni::delegate6::bond(function_ptr fnptr)
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t) const > inline void omni::delegate6::bond_const(const T& obj)
const function_ptr omni::delegate6::function()
ret_t omni::delegate6::invoke(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6)
ret_t omni::delegate6::invoke_direct(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6)
omni::invoke_t omni::delegate6::invoke_type()
bool omni::delegate6::is_bound()
bool omni::delegate6::is_member_bound()
const functor omni::delegate6::method()
void omni::delegate6::swap(delegate6< Ret PT1 PT2 PT3 PT4 PT5 PT6 >& d)
void *const omni::delegate6::target()
inline void omni::delegate6::unbind()
bool omni::delegate6::valid()
inline omni::delegate6::operator bool()
inline bool omni::delegate6::operator!()
bool omni::delegate6::operator!=(const delegate6< Ret PT1 PT2 PT3 PT4 PT5 PT6 >& d)
inline ret_t omni::delegate6::operator()(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6)
delegate6< Ret, PT1, PT2, PT3, PT4, PT5, PT6 >& omni::delegate6::operator=(const delegate6< Ret PT1 PT2 PT3 PT4 PT5 PT6 >& d)
bool omni::delegate6::operator==(const delegate6< Ret PT1 PT2 PT3 PT4 PT5 PT6 >& d)
typedef ret_t omni::delegate6::(*function_ptr)
typedef ret_t omni::delegate6::(*functor)
typedef PT1 omni::delegate6::p1_t
typedef PT2 omni::delegate6::p2_t
typedef PT3 omni::delegate6::p3_t
typedef PT4 omni::delegate6::p4_t
typedef PT5 omni::delegate6::p5_t
typedef PT6 omni::delegate6::p6_t
typedef Ret omni::delegate6::ret_t
SYNOPSIS
The delegate is a powerful function pointer object that encapsulates both an object instance and a method. The delegate is agnostic to the type or method it encapsulates; all that matters is that the method be signature compatible with the delegate. This allows for 'anonymous' invocation by users of the delegate.
top
The delegate is a powerful function pointer object that encapsulates both an object instance and a method. The delegate is agnostic to the type or method it encapsulates; all that matters is that the method be signature compatible with the delegate. This allows for 'anonymous' invocation by users of the delegate.
top
PARAMETERS top
Ret - Specifies the return type of the function the delegate is to attach toPT1 - Specifies the 1st parameter type passed to the function delegatePT2 - Specifies the 2nd parameter type passed to the function delegatePT3 - Specifies the 3rd parameter type passed to the function delegatePT4 - Specifies the 4th parameter type passed to the function delegatePT5 - Specifies the 5th parameter type passed to the function delegatePT6 - Specifies the 6th parameter type passed to the function delegate