WZDINFO.CPP
资源名称:B43.rar [点击查看]
上传用户:leishk
上传日期:2022-03-16
资源大小:3649k
文件大小:0k
源码类别:
ListView/ListBox
开发平台:
Visual C++
- // WzdInfo.cpp : implementation of the CWzdInfo class
- //
- #include "stdafx.h"
- #include "WzdInfo.h"
- /////////////////////////////////////////////////////////////////////////////
- // CWzdInfo
- CWzdInfo::CWzdInfo(CString sName,CString sComment,int nCategory,int nObjectID) :
- m_sName(sName), m_sComment(sComment),m_nCategory(nCategory),m_nObjectID(nObjectID)
- {
- }
- CWzdInfo::~CWzdInfo()
- {
- while (!m_list.IsEmpty())
- {
- delete m_list.RemoveHead();
- }
- }