WZDINFO.CPP
上传用户:leishk
上传日期:2022-03-16
资源大小:3649k
文件大小:0k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // WzdInfo.cpp : implementation of the CWzdInfo class
  2. //
  3. #include "stdafx.h"
  4. #include "WzdInfo.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CWzdInfo
  7. CWzdInfo::CWzdInfo(CString sName,CString sComment,int nCategory,int nObjectID) :
  8. m_sName(sName), m_sComment(sComment),m_nCategory(nCategory),m_nObjectID(nObjectID)
  9. {
  10. }
  11. CWzdInfo::~CWzdInfo()
  12. {
  13. while (!m_list.IsEmpty())
  14. {
  15. delete m_list.RemoveHead();
  16. }
  17. }