omni::event::attach
NAME

omni::event::attach

A member function of omni::event

#include <omni/delegate/0.hpp>
void omni::event::attach(const omni::delegate< Ret >& d)

OVERLOADS

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