summaryrefslogtreecommitdiff
path: root/TAO/tao/LF_Event_Binder.inl
blob: d861a1f27892237a93ddfd1a5fdfecffafc6af77 (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_Follower *follower)
  : event_ (event)
{
  this->event_->bind (follower);
}


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