NAME
A class of omni
omni::event8
A class of omni
#include <omni/delegate/8.hpp>
event8
omni::event8::event8()
omni::event8::~event8()
void omni::event8::attach(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8) const > void omni::event8::attach_const(const T& obj)
void omni::event8::clear()
bool omni::event8::contains(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8) const > bool omni::event8::contains_const(const T& obj)
void omni::event8::detach(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
void omni::event8::detach_all(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8) const > void omni::event8::detach_const(const T& obj)
bool omni::event8::empty()
container_t omni::event8::invocation_list()
ret_t omni::event8::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)
ret_t omni::event8::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)
void omni::event8::swap(event8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& e)
event8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 > omni::event8::operator-(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
omni::event8::operator bool()
bool omni::event8::operator!()
bool omni::event8::operator!=(const event8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& e)
ret_t omni::event8::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)
omni::delegate8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 >& omni::event8::operator[](std::size_t idx)
event8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 > omni::event8::operator+(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
event8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 >& omni::event8::operator+=(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
event8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 >& omni::event8::operator=(const event8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& e)
event8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 >& omni::event8::operator-=(const omni::delegate8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& d)
bool omni::event8::operator==(const event8< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 >& e)
typedef typename omni_sequence_t< omni::delegate8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 > >::const_iterator omni::event8::const_iterator_t
typedef typename std::reverse_iterator< const_iterator_t > omni::event8::const_reverse_iterator_t
typedef typename omni_sequence_t< omni::delegate8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 > > omni::event8::container_t
typedef omni::delegate8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 > omni::event8::delegate_t
typedef typename omni_sequence_t< omni::delegate8< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8 > >::iterator omni::event8::iterator_t
typedef PT1 omni::event8::p1_t
typedef PT2 omni::event8::p2_t
typedef PT3 omni::event8::p3_t
typedef PT4 omni::event8::p4_t
typedef PT5 omni::event8::p5_t
typedef PT6 omni::event8::p6_t
typedef PT7 omni::event8::p7_t
typedef PT8 omni::event8::p8_t
typedef Ret omni::event8::ret_t
typedef typename std::reverse_iterator< iterator_t > omni::event8::reverse_iterator_t
SYNOPSIS
The templated event allows client code to attach multiple delegates and invoke them, providing notification to attached code (i.e. event handlers). Invoking an event will invoke each attached handler (delegate) in the order they have been attached.
top
The templated event allows client code to attach multiple delegates and invoke them, providing notification to attached code (i.e. event handlers). Invoking an event will invoke each attached handler (delegate) in the order they have been attached.
top
PARAMETERS
top
Ret - Specifies the return type of the delegates to be attached 8 - Specifies the parameter types passed to the delegate
top