omni::event3
NAME

omni::event3

A class of omni

#include <omni/delegate/3.hpp>

MEMBERS

omni::event3::event3()
omni::event3::~event3()
void omni::event3::attach(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3) const > void omni::event3::attach_const(const T& obj)
void omni::event3::clear()
bool omni::event3::contains(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3) const > bool omni::event3::contains_const(const T& obj)
void omni::event3::detach(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
void omni::event3::detach_all(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
template < class T, ret_t (T::*fnptr)(PT1, PT2, PT3) const > void omni::event3::detach_const(const T& obj)
bool omni::event3::empty()
container_t omni::event3::invocation_list()
ret_t omni::event3::invoke(p1_t val1, p2_t val2, p3_t val3)
ret_t omni::event3::invoke_direct(p1_t val1, p2_t val2, p3_t val3)
void omni::event3::swap(event3< Ret PT1 PT2 PT3 >& e)
event3< Ret, PT1, PT2, PT3 > omni::event3::operator-(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
omni::event3::operator bool()
bool omni::event3::operator!()
bool omni::event3::operator!=(const event3< Ret PT1 PT2 PT3 >& e)
ret_t omni::event3::operator()(p1_t val1, p2_t val2, p3_t val3)
omni::delegate3< Ret, PT1, PT2, PT3 >& omni::event3::operator[](std::size_t idx)
event3< Ret, PT1, PT2, PT3 > omni::event3::operator+(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
event3< Ret, PT1, PT2, PT3 >& omni::event3::operator+=(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
event3< Ret, PT1, PT2, PT3 >& omni::event3::operator=(const event3< Ret PT1 PT2 PT3 >& e)
event3< Ret, PT1, PT2, PT3 >& omni::event3::operator-=(const omni::delegate3< Ret PT1 PT2 PT3 >& d)
bool omni::event3::operator==(const event3< Ret PT1 PT2 PT3 >& e)
omni::event3::const_iterator_t
omni::event3::const_reverse_iterator_t
omni::event3::container_t
omni::event3::delegate_t
omni::event3::iterator_t
omni::event3::p1_t
omni::event3::p2_t
omni::event3::p3_t
omni::event3::ret_t
omni::event3::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 3 - Specifies the parameter types passed to the delegate

top