summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/tmplinst.cpp
blob: 494026a84eaf8515e23f00311b5aec0c949d686f (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
//
// $Id$
//

// The contents of this file REALLY should be generated by the IDL
// compiler, but that functionality isn't available yet.

#include "param_testC.h"

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class TAO_Unbounded_Sequence<CORBA::Long>;
template class TAO_Bounded_Sequence<CORBA::Long,32>;
template class TAO_Bounded_String_Sequence<32>;
template class TAO_Unbounded_Sequence<Param_Test::Fixed_Struct>;
template class TAO_Bounded_Sequence<Param_Test::Fixed_Struct,32>;
template class TAO_Unbounded_Object_Sequence<Coffee>;
template class TAO_Bounded_Object_Sequence<Coffee,32>;
template class TAO_Object_Manager<Coffee>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate TAO_Unbounded_Sequence<CORBA::Long>
#pragma instantiate TAO_Bounded_Sequence<CORBA::Long,32>
#pragma instantiate TAO_Bounded_String_Sequence<32>
#pragma instantiate TAO_Unbounded_Sequence<Param_Test::Fixed_Struct>
#pragma instantiate TAO_Bounded_Sequence<Param_Test::Fixed_Struct,32>
#pragma instantiate TAO_Unbounded_Object_Sequence<Coffee>
#pragma instantiate TAO_Bounded_Object_Sequence<Coffee,32>
#pragma instantiate TAO_Object_Manager<Coffee>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */