NAME
A class of omni
MEMBERS
omni::event11
A class of omni
#include <omni/delegate/11.hpp>MEMBERS
omni::event11::event11()
omni::event11::~event11()
void omni::event11::attach(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11) const > void omni::event11::attach_const(const T& obj)
void omni::event11::clear()
bool omni::event11::contains(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11) const > bool omni::event11::contains_const(const T& obj)
void omni::event11::detach(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
void omni::event11::detach_all(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11) const > void omni::event11::detach_const(const T& obj)
bool omni::event11::empty()
container_t omni::event11::invocation_list()
ret_t omni::event11::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, p10_t val10, p11_t val11)
ret_t omni::event11::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, p10_t val10, p11_t val11)
void omni::event11::swap(event11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& e)
event11< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11 > omni::event11::operator-(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
omni::event11::operator bool()
bool omni::event11::operator!()
bool omni::event11::operator!=(const event11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& e)
ret_t omni::event11::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, p10_t val10, p11_t val11)
omni::delegate11< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11 >& omni::event11::operator[](std::size_t idx)
event11< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11 > omni::event11::operator+(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
event11< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11 >& omni::event11::operator+=(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
event11< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11 >& omni::event11::operator=(const event11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& e)
event11< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10, PT11 >& omni::event11::operator-=(const omni::delegate11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& d)
bool omni::event11::operator==(const event11< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 PT11 >& e)
omni::event11::const_iterator_t
omni::event11::const_reverse_iterator_t
omni::event11::container_t
omni::event11::delegate_t
omni::event11::iterator_t
omni::event11::p1_t
omni::event11::p10_t
omni::event11::p11_t
omni::event11::p2_t
omni::event11::p3_t
omni::event11::p4_t
omni::event11::p5_t
omni::event11::p6_t
omni::event11::p7_t
omni::event11::p8_t
omni::event11::p9_t
omni::event11::ret_t
omni::event11::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 11 - Specifies the parameter types passed to the delegate
top