omni::event5
NAME

omni::event5

A class of omni

#include <omni/delegate/5.hpp>
event5
omni::event5::event5()
omni::event5::~event5()
void omni::event5::attach(const omni::delegate5< Ret PT1 PT2 PT3 PT4 PT5 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5) const > void omni::event5::attach_const(const T& obj)
void omni::event5::clear()
bool omni::event5::contains(const omni::delegate5< Ret PT1 PT2 PT3 PT4 PT5 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5) const > bool omni::event5::contains_const(const T& obj)
void omni::event5::detach(const omni::delegate5< Ret PT1 PT2 PT3 PT4 PT5 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3, PT4, PT5) const > void omni::event5::detach_const(const T& obj)
bool omni::event5::empty()
container_t omni::event5::invocation_list()
ret_t omni::event5::invoke_direct(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5)
void omni::event5::swap(event5< Ret PT1 PT2 PT3 PT4 PT5 >& e)
omni::event5::operator bool()
bool omni::event5::operator!()
bool omni::event5::operator!=(const event5< Ret PT1 PT2 PT3 PT4 PT5 >& e)
ret_t omni::event5::operator()(p1_t val1, p2_t val2, p3_t val3, p4_t val4, p5_t val5)
omni::delegate5< Ret, PT1, PT2, PT3, PT4, PT5 >& omni::event5::operator[](std::size_t idx)
event5< Ret, PT1, PT2, PT3, PT4, PT5 >& omni::event5::operator+=(const omni::delegate5< Ret PT1 PT2 PT3 PT4 PT5 >& d)
event5< Ret, PT1, PT2, PT3, PT4, PT5 >& omni::event5::operator=(const event5< Ret PT1 PT2 PT3 PT4 PT5 >& e)
event5< Ret, PT1, PT2, PT3, PT4, PT5 >& omni::event5::operator-=(const omni::delegate5< Ret PT1 PT2 PT3 PT4 PT5 >& d)
bool omni::event5::operator==(const event5< Ret PT1 PT2 PT3 PT4 PT5 >& e)
typedef typename std::deque< omni::delegate5< Ret, PT1, PT2, PT3, PT4, PT5 > >::const_iterator omni::event5::const_iterator_t
typedef typename std::reverse_iterator< const_iterator_t > omni::event5::const_reverse_iterator_t
typedef typename std::deque< omni::delegate5< Ret, PT1, PT2, PT3, PT4, PT5 > > omni::event5::container_t
typedef omni::delegate5< Ret, PT1, PT2, PT3, PT4, PT5 > omni::event5::delegate_t
typedef typename std::deque< omni::delegate5< Ret, PT1, PT2, PT3, PT4, PT5 > >::iterator omni::event5::iterator_t
typedef PT1 omni::event5::p1_t
typedef PT2 omni::event5::p2_t
typedef PT3 omni::event5::p3_t
typedef PT4 omni::event5::p4_t
typedef PT5 omni::event5::p5_t
typedef Ret omni::event5::ret_t
typedef typename std::reverse_iterator< iterator_t > omni::event5::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 found.

top

PARAMETERS top

Ret - Specifies the return type of the delegates to be attached

5 - Specifies the parameter types passed to the delegate

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