summaryrefslogtreecommitdiff
path: root/TAO/tao/client_factory.i
blob: 54a82884c750f1ba1f78774a2adef70fb3e006e9 (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
ACE_INLINE
TAO_Client_Connection_Handler::TAO_Client_Connection_Handler (ACE_Thread_Manager *)
  : in_use_ (0)
{}

ACE_INLINE CORBA::Boolean
TAO_Client_Connection_Handler::in_use (void)
{
  return in_use_;
}

ACE_INLINE void
TAO_Client_Connection_Handler::in_use (CORBA::Boolean flag)
{
  in_use_ = flag;
}

ACE_INLINE CONNECTOR *
TAO_Client_Strategy_Factory::connector (void)
{
  return 0;
}

ACE_INLINE
TAO_Client_Strategy_Factory::TAO_Client_Strategy_Factory (void)
{}

ACE_INLINE
TAO_Client_Strategy_Factory::~TAO_Client_Strategy_Factory (void)
{}