omni::delegate5
NAME

omni::delegate5

A class of omni

#include <omni/delegate/5.hpp>
class omni::delegate5

MEMBERS

omni::delegate5::delegate5()
omni::delegate5::~delegate5()
template < ret_t (*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t) > static delegate5 omni::delegate5::bind()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t) const > static delegate5 omni::delegate5::bind_const(const T& obj)
inline void omni::delegate5::bond(function_ptr fnptr)
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t) const > inline void omni::delegate5::bond_const(const T& obj)
function_ptr omni::delegate5::function()
ret_t omni::delegate5::invoke(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5)
ret_t omni::delegate5::invoke_direct(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5)
omni::invoke_t omni::delegate5::invoke_type()
bool omni::delegate5::is_bound()
bool omni::delegate5::is_member_bound()
functor omni::delegate5::method()
void omni::delegate5::swap(delegate5< Ret, PT1, PT2, PT3, PT4, PT5 >& d)
void* omni::delegate5::target()
inline void omni::delegate5::unbind()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t) > inline void omni::delegate5::unsafe_set_method()
template < class T, ret_t (T::*fnptr)(p1_t, p2_t, p3_t, p4_t, p5_t) const > inline void omni::delegate5::unsafe_set_method_const()
template < class T > inline void omni::delegate5::unsafe_set_target(T& obj)
bool omni::delegate5::valid()
inline ret_t omni::delegate5::operator()
inline omni::delegate5::operator bool()
inline bool omni::delegate5::operator!()
bool omni::delegate5::operator!=(const delegate5< Ret, PT1, PT2, PT3, PT4, PT5 >& d)
delegate5< Ret, PT1, PT2, PT3, PT4, PT5 >& omni::delegate5::operator=(const delegate5< Ret, PT1, PT2, PT3, PT4, PT5 >& d)
bool omni::delegate5::operator==(const delegate5< Ret, PT1, PT2, PT3, PT4, PT5 >& d)
omni::delegate5::(*function_ptr)
omni::delegate5::(*functor)
omni::delegate5::p1_t
omni::delegate5::p2_t
omni::delegate5::p3_t
omni::delegate5::p4_t
omni::delegate5::p5_t
omni::delegate5::ret_t

SYNOPSIS

The delegate is a powerful function pointer object that encapsulates both an object instance and a method.

top

DESCRIPTION

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

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

top