FileBrowserThread.h
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // FileBrowserThread.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CFileBrowserThread thread
  5. class CFileBrowserThread : public CWinThread
  6. {
  7. DECLARE_DYNCREATE(CFileBrowserThread)
  8. protected:
  9. CFileBrowserThread();           // protected constructor used by dynamic creation
  10. // Attributes
  11. public:
  12. CDialog *m_pDlg;
  13. CRemoteUsr *m_pRemoteUser;
  14. CRemoteInterface *m_pRI;
  15. // Operations
  16. public:
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CFileBrowserThread)
  20. public:
  21. virtual BOOL InitInstance();
  22. virtual int ExitInstance();
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. protected:
  26. virtual ~CFileBrowserThread();
  27. // Generated message map functions
  28. //{{AFX_MSG(CFileBrowserThread)
  29. // NOTE - the ClassWizard will add and remove member functions here.
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. /////////////////////////////////////////////////////////////////////////////