summaryrefslogtreecommitdiff
path: root/TAO/tao/ValueFactory.cpp
blob: f0a09e7ee001a45b648855ff96b615acae59c5ed (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
#include "tao/ValueFactory.h"

#if !defined (__ACE_INLINE__)
# include "tao/ValueFactory.i"
#endif /* ! __ACE_INLINE__ */


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


CORBA::ValueFactoryBase::~ValueFactoryBase (void)
{
}

/*static*/ CORBA::ValueFactoryBase *
CORBA::ValueFactoryBase::_nil (void)
{
  return 0;
}

// No-op. This should never be called, but it can't be pure virtual.
CORBA::AbstractBase *
CORBA::ValueFactoryBase::create_for_unmarshal_abstract (void)
{
  return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

  template class TAO_Pseudo_Value_Var_T<CORBA::ValueFactoryBase>;
  template class TAO_Pseudo_Value_Out_T<CORBA::ValueFactoryBase, CORBA::ValueFactoryBase_var>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

# pragma instantiate TAO_Pseudo_Value_Var_T<CORBA::ValueFactoryBase>
# pragma instantiate TAO_Pseudo_Value_Out_T<CORBA::ValueFactoryBase, CORBA::ValueFactoryBase_var>

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */