vcl_set.txx

来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· TXX 代码 · 共 28 行

TXX
28
字号
#ifndef vcl_sunpro_set_txx_
#define vcl_sunpro_set_txx_

#include <vcl_set.h>
#include <vcl_iterator.h>

#if 0 // has member templates
#define VCL_SET_INSTANTIATE_MT_InputIterator(settype, T, Comp, InputIterator) \
template settype<T, Comp >::settype(InputIterator, InputIterator);\
template settype<T, Comp >::settype(InputIterator first, InputIterator last, Comp const&);\
template void settype<T, Comp >::insert(InputIterator first, InputIterator last)

#else
#define VCL_SET_INSTANTIATE_MT_InputIterator(settype, T, Comp, InputIterator) /* no-op */
#endif

#define VCL_SET_INSTANTIATE_ITERATOR(InputIterator, Distance) \
template void std :: __distance (InputIterator , InputIterator , Distance& , vcl_bidirectional_iterator_tag )


#undef VCL_SET_INSTANTIATE
#define VCL_SET_INSTANTIATE(T, Comp) \
template class vcl_set<T, Comp >; \
template class vcl_set<T, Comp >::__rep_type; \
VCL_SET_INSTANTIATE_ITERATOR(vcl_set<T VCL_COMMA Comp >::iterator, unsigned)

#endif // vcl_sunpro_set_txx_

⌨️ 快捷键说明

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