#ifndef PROGRESSWNDTHREAD_H #define PROGRESSWNDTHREAD_H #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CRemoteAdminDoc; class CProgressDlg; class CProgressWndThread : public CWinThread { DECLARE_DYNCREATE(CProgressWndThread) protected: CProgressWndThread(); // protected constructor used by dynamic creation // Attributes public: // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CProgressWndThread) public: virtual BOOL InitInstance(); virtual int ExitInstance(); //}}AFX_VIRTUAL void SetDocument(CRemoteAdminDoc* pRemoteAdminDoc); void SetProgressText(CString strDlgProgressTxt); // Implementation protected: virtual ~CProgressWndThread(); CRemoteAdminDoc* m_pRemoteAdminDoc; // Generated message map functions //{{AFX_MSG(CProgressWndThread) // NOTE - the ClassWizard will add and remove member functions here. //}}AFX_MSG DECLARE_MESSAGE_MAP() }; #endif // PROGRESSWNDTHREAD_H
By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)