www.pudn.com > warsrc.rar > FileBrowserThread.h


// FileBrowserThread.h : header file 
// 
 
 
 
///////////////////////////////////////////////////////////////////////////// 
// CFileBrowserThread thread 
 
class CFileBrowserThread : public CWinThread 
{ 
	DECLARE_DYNCREATE(CFileBrowserThread) 
protected: 
	CFileBrowserThread();           // protected constructor used by dynamic creation 
 
// Attributes 
public: 
	CDialog *m_pDlg; 
	CRemoteUsr *m_pRemoteUser; 
	CRemoteInterface *m_pRI; 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(CFileBrowserThread) 
	public: 
	virtual BOOL InitInstance(); 
	virtual int ExitInstance(); 
	//}}AFX_VIRTUAL 
 
// Implementation 
protected: 
	virtual ~CFileBrowserThread(); 
 
	// Generated message map functions 
	//{{AFX_MSG(CFileBrowserThread) 
		// NOTE - the ClassWizard will add and remove member functions here. 
	//}}AFX_MSG 
 
	DECLARE_MESSAGE_MAP() 
}; 
 
/////////////////////////////////////////////////////////////////////////////