summaryrefslogtreecommitdiff
path: root/TAO/tao/Remote_Object_Proxy_Broker.cpp
blob: eaca853dd7a2cf649c6b6ea8c0e4352db1c3a766 (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
// $Id$

#include "tao/Remote_Object_Proxy_Broker.h"

ACE_RCSID (tao, TAO_Object_Remote_Proxy_Broker, "$Id$")

TAO_Remote_Object_Proxy_Broker *
the_tao_remote_object_proxy_broker (void)
{
  static TAO_Remote_Object_Proxy_Broker the_broker;
  return &the_broker;
}

TAO_Remote_Object_Proxy_Broker::TAO_Remote_Object_Proxy_Broker (void)
{
  // No-Op.
}

TAO_Remote_Object_Proxy_Broker::~TAO_Remote_Object_Proxy_Broker (void)
{
  // No-Op.
}

TAO_Object_Proxy_Impl 
&TAO_Remote_Object_Proxy_Broker::select_proxy (CORBA::Object_ptr,
               CORBA::Environment &)
{
  return this->remote_proxy_impl_;
}