| 123456789101112131415161718192021222324252627282930 |
- #include "StdAfx.h"
- #include "IpoLineList.h"
- CIpoLineList::CIpoLineList(void)
- {
- }
- CIpoLineList::~CIpoLineList(void)
- {
- Free();
- }
- /*****************************************************************
- **【函数名称】 Free
- **【函数功能】 释放所有IPO线路信息
- **【参数】
- **【返回值】
- ****************************************************************/
- void CIpoLineList::Free( void )
- {
- while(m_nCount > 0)
- {
- IpoLine* pLine = RemoveHead();
- ASSERT(pLine != NULL);
- delete pLine;
- }
- }
|