omni::event4::attach
NAME

omni::event4::attach

A member function of omni::event4

#include <omni/delegate/4.hpp>
void omni::event4::attach(const omni::delegate4< Ret PT1 PT2 PT3 PT4 >& d)

OVERLOADS

template < class InputIterator > void omni::event4::attach(InputIterator begin, InputIterator end)
void omni::event4::attach(const event4< Ret PT1 PT2 PT3 PT4 >& e)
template < ret_t (*fnptr)(PT1, PT2, PT3, PT4) > void omni::event4::attach()
template < class T, Ret (T::*fnptr)(PT1, PT2, PT3, PT4) > void omni::event4::attach(T& obj)
template < class T, Ret (T::*fnptr)(PT1, PT2, PT3, PT4) > void omni::event4::attach(const T& obj)
template < class T, Ret (T::*fnptr)(PT1, PT2, PT3, PT4) > void omni::event4::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