blob: 8f91080644a6c21efa4b4180929e90b666563bff (
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
|
// @(#) $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 &,
IR_InterfaceDef *)
{
return 0;
}
void
TAO_IFR_Client_Adapter::interfacedef_any_insert (CORBA_Any &,
IR_InterfaceDef *)
{
}
IR_InterfaceDef *
TAO_IFR_Client_Adapter::get_interface (CORBA::ORB_ptr,
const char *,
CORBA::Environment &)
{
return 0;
}
CORBA_IRObject_ptr
TAO_IFR_Client_Adapter::get_interface_def (CORBA::ORB_ptr,
const char *,
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 */
|