blob: 1a9d0161a60e35bf7bb8dc0e72244578a4dc0546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
//$Id$
#include "tao/TkResource/TkResource_Factory.h"
#include "tao/debug.h"
#include "ace/TkReactor/TkReactor.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
TkResource_Factory::TkResource_Factory (void)
: reactor_impl_ (0)
{
}
ACE_Reactor_Impl *
TkResource_Factory::reactor_impl (void)
{
// synchronized by external locks
if (!this->reactor_impl_)
{
ACE_NEW_RETURN (this->reactor_impl_,
ACE_TkReactor (),
0);
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - ACE_TkReactor created\n"));
}
return this->reactor_impl_;
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
|