summaryrefslogtreecommitdiff
path: root/TAO/tao/IFR_Client_Adapter.cpp
blob: 22520f5ee60db956587157bfd763635e183f7b59 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// @(#) $Id$

#include "tao/IFR_Client_Adapter.h"
#include "ace/Dynamic_Service.h"

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

TAO_IFR_Client_Adapter::~TAO_IFR_Client_Adapter (void)
{
}

// Methods to be overridden.

CORBA::Boolean
TAO_IFR_Client_Adapter::interfacedef_cdr_insert (TAO_OutputCDR &,
                                                 CORBA_InterfaceDef_ptr)
{
  return 0;
}

void
TAO_IFR_Client_Adapter::interfacedef_any_insert (CORBA_Any &,
                                                 CORBA_InterfaceDef_ptr)
{
}

void
TAO_IFR_Client_Adapter::dispose (CORBA_InterfaceDef_ptr)
{
}

CORBA_InterfaceDef_ptr
TAO_IFR_Client_Adapter::get_interface (CORBA::ORB_ptr,
                                       const char *,
                                       CORBA::Environment &)
{
  return 0;
}

CORBA_InterfaceDef_ptr
TAO_IFR_Client_Adapter::get_interface_remote (const CORBA::Object_ptr,
                                              CORBA_Environment &)
{
  return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class ACE_Dynamic_Service<TAO_IFR_Client_Adapter>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate ACE_Dynamic_Service<TAO_IFR_Client_Adapter>

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */