DIRLIST.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DirList.h: interface for the CDirList class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DIRLIST_H__9C9E8F4C_A970_11D0_8CAF_000000000000__INCLUDED_)
  5. #define AFX_DIRLIST_H__9C9E8F4C_A970_11D0_8CAF_000000000000__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include <afxtempl.h>
  10. #include "FileItem.h"
  11. class CDirList : public CObject  
  12. {
  13. public:
  14. void Reset();
  15. int Count();
  16. CFileItem * GetNextPos(POSITION& p);
  17. POSITION GetHeadPosition();
  18. BOOL FAddDir(LPCTSTR strDir, LPCTSTR strFile, CRect& rectWnd, BOOL fInDebugger, BOOL fTouch = TRUE);
  19. CDirList();
  20. virtual ~CDirList();
  21. CList<CFileItem *, CFileItem *> m_dirList;
  22. protected:
  23. };
  24. #endif // !defined(AFX_DIRLIST_H__9C9E8F4C_A970_11D0_8CAF_000000000000__INCLUDED_)