summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/tmplinst-orbsvcs.cpp
blob: e9d059c4a8f56fc204c4d57eb4e68bc7c3fd8d62 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// $Id$

#include "orbsvcs/CosLifeCycleC.h"
#include "orbsvcs/CosNamingC.h"
#include "orbsvcs/CosPropertyServiceC.h"
#include "orbsvcs/RtecEventCommC.h"
#include "orbsvcs/RtecEventChannelAdminC.h"
#include "orbsvcs/RtecSchedulerC.h"

ACE_RCSID(orbsvcs, tmplinst_orbsvcs, "$Id$")

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class TAO_Object_Manager<CORBA_Object>;
template class TAO_Object_Manager<CORBA_TypeCode>;
template class TAO_Unbounded_Object_Sequence<CORBA_Object>;
template class TAO_Unbounded_Pseudo_Sequence<CORBA_TypeCode>;

#if defined(TAO_ORBSVCS_HAS_LifeCycle)
template class TAO_Unbounded_Sequence<CosLifeCycle::NVP>;
#endif /* TAO_ORBSVCS_HAS_LifeCycle */

#if defined(TAO_ORBSVCS_HAS_Naming)
template class TAO_Unbounded_Sequence<CosNaming::NameComponent>;
template class TAO_Unbounded_Sequence<CosNaming::Binding>;
#endif /* TAO_ORBSVCS_HAS_Naming */

#if defined(TAO_ORBSVCS_HAS_Property)
template class TAO_Unbounded_Sequence<CosPropertyService::Property>;
template class TAO_Unbounded_Sequence<CosPropertyService::PropertyDef>;
template class TAO_Unbounded_Sequence<CosPropertyService::PropertyException>;
template class TAO_Unbounded_Sequence<CosPropertyService::PropertyMode>;
#endif /* TAO_ORBSVCS_HAS_Property */

#if defined(TAO_ORBSVCS_HAS_Event)
template class TAO_Unbounded_Sequence<RtecEventComm::Event>;
template class TAO_Unbounded_Sequence<RtecEventChannelAdmin::Dependency>;
template class TAO_Unbounded_Sequence<RtecEventChannelAdmin::Publication>;
#endif /* TAO_ORBSVCS_HAS_Event */

#if defined(TAO_ORBSVCS_HAS_Sched)
template class TAO_Unbounded_Sequence<RtecScheduler::Dependency_Info>;
template class TAO_Unbounded_Sequence<RtecScheduler::RT_Info>;
#endif /* TAO_ORBSVCS_HAS_Sched */

#elif defined(ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate TAO_Object_Manager<CORBA_Object>
#pragma instantiate TAO_Object_Manager<CORBA_TypeCode>
#pragma instantiate TAO_Unbounded_Object_Sequence<CORBA_Object>
#pragma instantiate TAO_Unbounded_Pseudo_Sequence<CORBA_TypeCode>

#if defined(TAO_ORBSVCS_HAS_LifeCycle)
#pragma instantiate TAO_Unbounded_Sequence<CosLifeCycle::NVP>
#endif /* TAO_ORBSVCS_HAS_LifeCycle */

#if defined(TAO_ORBSVCS_HAS_Naming)
#pragma instantiate TAO_Unbounded_Sequence<CosNaming::NameComponent>
#pragma instantiate TAO_Unbounded_Sequence<CosNaming::Binding>
#endif /* TAO_ORBSVCS_HAS_Naming */

#if defined(TAO_ORBSVCS_HAS_Property)
#pragma instantiate TAO_Unbounded_Sequence<CosPropertyService::Property>
#pragma instantiate TAO_Unbounded_Sequence<CosPropertyService::PropertyDef>
#pragma instantiate TAO_Unbounded_Sequence<CosPropertyService::PropertyException>
#pragma instantiate TAO_Unbounded_Sequence<CosPropertyService::PropertyMode>
#endif /* TAO_ORBSVCS_HAS_Property */

#if defined(TAO_ORBSVCS_HAS_Event)
#pragma instantiate TAO_Unbounded_Sequence<RtecEventComm::Event>
#pragma instantiate TAO_Unbounded_Sequence<RtecEventChannelAdmin::Dependency>
#pragma instantiate TAO_Unbounded_Sequence<RtecEventChannelAdmin::Publication>
#endif /* TAO_ORBSVCS_HAS_Event */

#if defined(TAO_ORBSVCS_HAS_Sched)
#pragma instantiate TAO_Unbounded_Sequence<RtecScheduler::Dependency_Info>
#pragma instantiate TAO_Unbounded_Sequence<RtecScheduler::RT_Info>
#endif /* TAO_ORBSVCS_HAS_Sched */

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */