File: vcl_map.txx

package info (click to toggle)
insighttoolkit 3.6.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 94,956 kB
  • ctags: 74,981
  • sloc: cpp: 355,621; ansic: 195,070; fortran: 28,713; python: 3,802; tcl: 1,996; sh: 1,175; java: 583; makefile: 415; csh: 184; perl: 175
file content (20 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef vcl_sgi_map_txx_
#define vcl_sgi_map_txx_

#undef VCL_MAP_INSTANTIATE
#if VCL_USE_NATIVE_STL
#define VCL_MAP_INSTANTIATE(K, V, C) \
template class vcl_map<K, V, C >; \
template class std::rb_tree<K,std::pair<const K,V >,std::select1st<std::pair<const K,V > >,C,std::__default_alloc_template<true,0> >
#else
#define VCL_MAP_INSTANTIATE(K, V, C) \
template class vcl_map<K, V, C >
#endif

//-------------------- multimap

#undef VCL_MULTIMAP_INSTANTIATE
#define VCL_MULTIMAP_INSTANTIATE(T, Key, Comp) \
template class vcl_multimap<T, Key, Comp >

#endif // vcl_sgi_map_txx_