⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vcl_map.txx

📁 InsightToolkit-1.4.0(有大量的优化算法程序)
💻 TXX
字号:
#ifndef vcl_sunpro_map_txx_
#define vcl_sunpro_map_txx_

#include <vcl_map.h>
#include <vcl_iterator.h>

// the business
#define VCL_MAP_INSTANTIATE_internal(tag, Key, T, Comp) \
typedef vcl_map_sunpro_50<Key, T, Comp >::base grik##tag; \
template class grik##tag; \
template class grik##tag :: __rep_type; \
template void std::__distance(grik##tag::iterator, grik##tag::iterator, unsigned &, vcl_bidirectional_iterator_tag); \
template struct vcl_map_sunpro_50<Key, T, Comp >


// the purpose of this macro is to expand out 'tag', before passing it on.
#define VCL_MAP_INSTANTIATE_internal_expandline(tag, Key, T, Comp) \
VCL_MAP_INSTANTIATE_internal(tag, Key, T, Comp)

// clients call this
#undef VCL_MAP_INSTANTIATE
#define VCL_MAP_INSTANTIATE(Key, T, Comp) \
VCL_MAP_INSTANTIATE_internal_expandline(__LINE__, Key, T, Comp)


//-------------------- multimap
#undef VCL_MULTIMAP_INSTANTIATE
#define VCL_MULTIMAP_INSTANTIATE(Key, T, Comp) \
template class vcl_multimap<Key, T, Comp >; \
template struct vcl_multimap_sunpro_50<Key, T, Comp >

#endif // vcl_sunpro_map_txx_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -