vcl_vector.txx
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· TXX 代码 · 共 22 行
TXX
22 行
#ifndef vcl_sunpro_vector_txx_
#define vcl_sunpro_vector_txx_
#include <vcl_vector.h>
// --- Vector ---
#undef VCL_VECTOR_INSTANTIATE
#define VCL_VECTOR_INSTANTIATE(T) \
template class std::vector<T, std::allocator<T > >; \
/* member templates */ \
/* !!this is not a member template!! */ \
/* template void std::vector<T, std::allocator<T > >::__insert_aux(std::vector<T >::iterator, T const &); */ \
/* helper functions */ \
template void std::fill(T *, T *, T const &); \
template T *std::copy(T *, T *, T *); \
template T *std::copy(T const *, T const *, T *); \
template T *std::copy_backward(T *, T *, T *); \
/* the wrapper */ \
template struct vcl_vector_sunpro_50<T >
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?