omni::delegate9
NAME

omni::delegate9

A class of omni

#include <omni/delegate/9.hpp>

MEMBERS

omni::delegate9::delegate9()
omni::delegate9::~delegate9()
template < ret_t (*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t, p7_t, p8_t, p9_t) > static delegate9 omni::delegate9::bind()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t, p7_t, p8_t, p9_t) const > static delegate9 omni::delegate9::bind_const(const T& obj)
inline void omni::delegate9::bond(function_ptr fnptr)
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t, p7_t, p8_t, p9_t) const > inline void omni::delegate9::bond_const(const T& obj)
const function_ptr omni::delegate9::function()
ret_t omni::delegate9::invoke(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6, p7_t val7, p8_t val8, p9_t val9)
ret_t omni::delegate9::invoke_direct(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6, p7_t val7, p8_t val8, p9_t val9)
omni::invoke_t omni::delegate9::invoke_type()
bool omni::delegate9::is_bound()
bool omni::delegate9::is_member_bound()
const functor omni::delegate9::method()
void omni::delegate9::swap(delegate9< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 >& d)
void* omni::delegate9::target()
inline void omni::delegate9::unbind()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t, p7_t, p8_t, p9_t) > inline void omni::delegate9::unsafe_set_method()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t, p6_t, p7_t, p8_t, p9_t) const > inline void omni::delegate9::unsafe_set_method_const()
template < class T > inline void omni::delegate9::unsafe_set_target(T& obj)
bool omni::delegate9::valid()
inline omni::delegate9::operator bool()
inline bool omni::delegate9::operator!()
bool omni::delegate9::operator!=(const delegate9< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 >& d)
inline ret_t omni::delegate9::operator()(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6, p7_t val7, p8_t val8, p9_t val9)
delegate9< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9 >& omni::delegate9::operator=(const delegate9< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 >& d)
bool omni::delegate9::operator==(const delegate9< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 >& d)
omni::delegate9::(*function_ptr)
omni::delegate9::(*functor)
omni::delegate9::p1_t
omni::delegate9::p2_t
omni::delegate9::p3_t
omni::delegate9::p4_t
omni::delegate9::p5_t
omni::delegate9::p6_t
omni::delegate9::p7_t
omni::delegate9::p8_t
omni::delegate9::p9_t
omni::delegate9::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

DESCRIPTION

No description.

top

PARAMETERS

Ret - Specifies the return type of the function the delegate is to attach to PT1 - Specifies the 1st parameter type passed to the function delegate PT2 - Specifies the 2nd parameter type passed to the function delegate PT3 - Specifies the 3rd parameter type passed to the function delegate PT4 - Specifies the 4th parameter type passed to the function delegate PT5 - Specifies the 5th parameter type passed to the function delegate PT6 - Specifies the 6th parameter type passed to the function delegate PT7 - Specifies the 7th parameter type passed to the function delegate PT8 - Specifies the 8th parameter type passed to the function delegate PT9 - Specifies the 9th parameter type passed to the function delegate

top