summaryrefslogtreecommitdiff
path: root/ace/Container_Instantiations.cpp
blob: 7615c7a7cfc3c161e88ef941a732b10ffd010896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$
#include "ace/CDR_Base.h"
#include "ace/Unbounded_Queue.h"

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

// Instantiations of templates with basic data types that can be used
// across  ACE+TAO.
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class ACE_Node<ACE_INT32>;
template class ACE_Unbounded_Queue<ACE_INT32>;
template class ACE_Unbounded_Queue_Iterator<ACE_INT32>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate ACE_Node<ACE_INT32>;
#pragma instantiate ACE_Unbounded_Queue<ACE_INT32>;
#pragma instantiate ACE_Unbounded_Queue_Iterator<ACE_INT32>;

#endif /*ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION*/

ACE_END_VERSIONED_NAMESPACE_DECL