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

// 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*/