summaryrefslogtreecommitdiff
path: root/TAO/tao/LF_Event_Binder.inl
blob: e674cb6e08b675383bab0a256f59b04121e722ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

ACE_INLINE
TAO_LF_Event_Binder::TAO_LF_Event_Binder (TAO_LF_Event *event,
                                          TAO_LF_Follower *follower)
  : event_ (event)
{
  this->event_->bind (follower);
}


ACE_INLINE
TAO_LF_Event_Binder::~TAO_LF_Event_Binder (void)
{
  this->event_->unbind ();
}