omni::event3::attach
NAME

omni::event3::attach

A member function of omni::event3

#include <omni/delegate/3.hpp>
void omni::event3::attach(const omni::delegate3< Ret PT1 PT2 PT3 >& d)

OVERLOADS

template < class InputIterator > void omni::event3::attach(InputIterator begin, InputIterator end)
void omni::event3::attach(const event3< Ret PT1 PT2 PT3 >& e)
template < ret_t (*fnptr)(PT1, PT2, PT3) > void omni::event3::attach()
template < class T, Ret (T::*fnptr)(PT1, PT2, PT3) > void omni::event3::attach(T& obj)
template < class T, Ret (T::*fnptr)(PT1, PT2, PT3) > void omni::event3::attach(const T& obj)
template < class T, Ret (T::*fnptr)(PT1, PT2, PT3) > void omni::event3::attach(const T *const obj)

SYNOPSIS

Add (attach) a member delegate to this event instance

top

DESCRIPTION

No description.

top

PARAMETERS

d - The member delegate to attach

top