blob: b9fb2811526dfc223e99f8f65c6c7c308934788e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* -*- C++ -*- */
// $Id$
ACE_INLINE ACE_Reactor *
ACE_Reactor_Notification_Strategy::reactor (void)
{
return this->reactor_;
}
ACE_INLINE void
ACE_Reactor_Notification_Strategy::reactor (ACE_Reactor *r)
{
this->reactor_ = r;
}
|