home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBGraph / DialogThread.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.5 KB  |  62 lines

  1. /**********************************************************
  2.  
  3. DialogThread.cpp 
  4. Copyright TransEra Corporation 1999.
  5.  
  6. ***********************************************************/
  7.  
  8.  
  9. #if !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  10. #define AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. #include "GraphDlg.h"
  17. // DialogThread.h : header file
  18. //    jont 7/99
  19.  
  20. extern GraphDlg * g_GraphVar;        // used to hold pointer to dialog box outside of new thread
  21.  
  22.  
  23. class DialogThread : public CWinThread
  24. {
  25.     DECLARE_DYNCREATE(DialogThread)
  26. protected:
  27.     DialogThread();           // protected constructor used by dynamic creation
  28.  
  29. // Attributes
  30. public:
  31.  
  32. // Operations
  33. public:
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(DialogThread)
  38.     public:
  39.     virtual BOOL InitInstance();
  40.     afx_msg void OnPaint();
  41.     virtual int ExitInstance();
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45. protected:
  46.     virtual ~DialogThread();
  47.  
  48.     // Generated message map functions
  49.     //{{AFX_MSG(DialogThread)
  50.         // NOTE - the ClassWizard will add and remove member functions here.
  51.     //}}AFX_MSG
  52.  
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.  
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60.  
  61. #endif // !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  62.