omni::event10
NAME

omni::event10

A class of omni

#include <omni/delegate/10.hpp>

MEMBERS

omni::event10::event10()
omni::event10::~event10()
void omni::event10::attach(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10) const > void omni::event10::attach_const(const T& obj)
void omni::event10::clear()
bool omni::event10::contains(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10) const > bool omni::event10::contains_const(const T& obj)
void omni::event10::detach(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
void omni::event10::detach_all(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10) const > void omni::event10::detach_const(const T& obj)
bool omni::event10::empty()
container_t omni::event10::invocation_list()
ret_t omni::event10::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)
ret_t omni::event10::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)
void omni::event10::swap(event10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& e)
event10< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10 > omni::event10::operator-(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
omni::event10::operator bool()
bool omni::event10::operator!()
bool omni::event10::operator!=(const event10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& e)
ret_t omni::event10::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)
omni::delegate10< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10 >& omni::event10::operator[](std::size_t idx)
event10< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10 > omni::event10::operator+(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
event10< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10 >& omni::event10::operator+=(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
event10< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10 >& omni::event10::operator=(const event10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& e)
event10< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7, PT8, PT9, PT10 >& omni::event10::operator-=(const omni::delegate10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& d)
bool omni::event10::operator==(const event10< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 PT8 PT9 PT10 >& e)
omni::event10::const_iterator_t
omni::event10::const_reverse_iterator_t
omni::event10::container_t
omni::event10::delegate_t
omni::event10::iterator_t
omni::event10::p1_t
omni::event10::p10_t
omni::event10::p2_t
omni::event10::p3_t
omni::event10::p4_t
omni::event10::p5_t
omni::event10::p6_t
omni::event10::p7_t
omni::event10::p8_t
omni::event10::p9_t
omni::event10::ret_t
omni::event10::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

DESCRIPTION

No description.

top

PARAMETERS

Ret - Specifies the return type of the delegates to be attached 10 - Specifies the parameter types passed to the delegate

top