1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#ifndef __LIST_EX_H__
#define __LIST_EX_H__
#ifndef __AFXTEMPL_H__
#include <afxtempl.h>
#endif
////////////////////////////////////////////////////////////////////////////
template< class TYPE, class ARG_TYPE>
class CListEx : public CList<TYPE, ARG_TYPE>
{
// Construction
public:
CListEx (int nBlockSize = 10);
CListEx (const CListEx &x);
// Assigment
public:
CListEx &operator = (const CListEx &x);
};
template< class TYPE, class ARG_TYPE>
inline
CListEx<TYPE,ARG_TYPE>::CListEx(int nBlockSize)
: CList<TYPE,ARG_TYPE>(nBlockSize)
{
}
template< class TYPE, class ARG_TYPE>
inline
CListEx<TYPE,ARG_TYPE>::CListEx(const CListEx &x)
{
*this = x;
}
template< class TYPE, class ARG_TYPE>
inline CListEx<TYPE,ARG_TYPE> &
CListEx<TYPE,ARG_TYPE>::operator = (const CListEx &x)
{
if(this != &x)
{
TYPE tDst;
TYPE tSrc;
POSITION pos;
RemoveAll();
pos = x.GetHeadPosition();
while(pos != NULL)
{
tSrc = x.GetNext(pos);
CopyElements<TYPE>(&tDst,&tSrc,1);
AddTail(tDst);
}
}
return *this;
}
#endif |
Partager