omni::event7
NAME

omni::event7

A class of omni

#include <omni/delegate/7.hpp>
event7
omni::event7::event7()
omni::event7::~event7()
void omni::event7::attach(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7) const > void omni::event7::attach_const(const T& obj)
void omni::event7::clear()
bool omni::event7::contains(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7) const > bool omni::event7::contains_const(const T& obj)
void omni::event7::detach(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
void omni::event7::detach_all(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5, PT6, PT7) const > void omni::event7::detach_const(const T& obj)
bool omni::event7::empty()
container_t omni::event7::invocation_list()
ret_t omni::event7::invoke(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6, p7_t val7)
ret_t omni::event7::invoke_direct(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6, p7_t val7)
void omni::event7::swap(event7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& e)
event7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 > omni::event7::operator-(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
omni::event7::operator bool()
bool omni::event7::operator!()
bool omni::event7::operator!=(const event7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& e)
ret_t omni::event7::operator()(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5, p6_t val6, p7_t val7)
omni::delegate7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 >& omni::event7::operator[](std::size_t idx)
event7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 > omni::event7::operator+(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
event7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 >& omni::event7::operator+=(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
event7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 >& omni::event7::operator=(const event7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& e)
event7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 >& omni::event7::operator-=(const omni::delegate7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& d)
bool omni::event7::operator==(const event7< Ret PT1 PT2 PT3 PT4 PT5 PT6 PT7 >& e)
typedef typename omni_sequence_t< omni::delegate7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 > >::const_iterator omni::event7::const_iterator_t
typedef typename std::reverse_iterator< const_iterator_t > omni::event7::const_reverse_iterator_t
typedef typename omni_sequence_t< omni::delegate7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 > > omni::event7::container_t
typedef omni::delegate7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 > omni::event7::delegate_t
typedef typename omni_sequence_t< omni::delegate7< Ret, PT1, PT2, PT3, PT4, PT5, PT6, PT7 > >::iterator omni::event7::iterator_t
typedef PT1 omni::event7::p1_t
typedef PT2 omni::event7::p2_t
typedef PT3 omni::event7::p3_t
typedef PT4 omni::event7::p4_t
typedef PT5 omni::event7::p5_t
typedef PT6 omni::event7::p6_t
typedef PT7 omni::event7::p7_t
typedef Ret omni::event7::ret_t
typedef typename std::reverse_iterator< iterator_t > omni::event7::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 7 - Specifies the parameter types passed to the delegate

top

RETURN VALUES

No return value.

top

ERRORS

No errors specific to this context.

top

CONSIDERATIONS

No extra considerations.

top

PLATFORM SPECIFIC

Nothing platform specific to account for.

top

NOTES

No additional notes.

top

EXAMPLE
Currently no examples.
Visit the examples page for more.

top