summaryrefslogtreecommitdiff
path: root/examples/APG/Naming/Graphable_Element.cpp
blob: 6b5d6c755e697f0f90fe37f58c72b613fd7660fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// $Id$

#include "Graphable_Element.h"

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class _List_base<Graphable_Element, allocator<Graphable_Element> >;
template void list<Graphable_Element, allocator<Graphable_Element> >::sort(void);
template void list<Graphable_Element, allocator<Graphable_Element> >::merge(list<Graphable_Element, allocator<Graphable_Element> > &);
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
pragma instantiate _List_base<Graphable_Element, allocator<Graphable_Element> >;
pragma instantiate list<Graphable_Element, allocator<Graphable_Element> >::sort(void);
pragma instantiate list<Graphable_Element, allocator<Graphable_Element> >::merge(list<Graphable_Element, allocator<Graphable_Element> > &);
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */