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

ListView/ListBox

开发平台:

Visual C++

  1. #ifndef WZDINFO_H
  2. #define WZDINFO_H
  3. #include "afxtempl.h"
  4. #include "WzdInfo.h"
  5. class CWzdInfo : public CObject
  6. {
  7. public:
  8.     CWzdInfo(CString sName,CString sComment,int nCategory,int nObjectID);
  9.     ~CWzdInfo();
  10. enum {
  11. DEVICE,
  12. FOLDER,
  13. FILE
  14. };
  15. //misc info
  16. CString m_sName;
  17. CString m_sComment;
  18. int m_nCategory;
  19. int m_nObjectID;
  20. CList<CWzdInfo*,CWzdInfo*> m_list;
  21. };
  22. #endif