📄 listex.inl
字号:
#ifndef __LISTEX_INL__INCLUDED__
#define __LISTEX_INL__INCLUDED__
#ifdef INLINE
#undef INLINE
#endif
#ifndef _DEBUG
#define INLINE inline
#else
#define INLINE
#endif // _DEBUG
////////////////////////////////////////////////////////////////////////////////
template <class TYPE, class ARG_TYPE >INLINE
CListEx < TYPE, ARG_TYPE >::
CListEx (int nBlockSize /*= 10*/ , BOOL bDelete /*= FALSE*/ )
: CList < TYPE, ARG_TYPE > (nBlockSize),
m_bDelete (bDelete)
{
}
template <class TYPE, class ARG_TYPE >INLINE
CListEx < TYPE, ARG_TYPE >:: ~
CListEx ()
{
DestroyAll ();
}
////////////////////////////////////////////////////////////////////////////////
#endif // __LISTEX_INL__INCLUDED__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -