TaskingDoc.h
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // TaskingDoc.h : interface of the CTaskingDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TASKINGDOC_H__D84BFB61_187B_4CE6_984C_391BE1F2068B__INCLUDED_)
  5. #define AFX_TASKINGDOC_H__D84BFB61_187B_4CE6_984C_391BE1F2068B__INCLUDED_
  6. #include "Spinner.h" // Added by ClassView
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. class CTaskingDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CTaskingDoc();
  14. DECLARE_DYNCREATE(CTaskingDoc)
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CTaskingDoc)
  22. public:
  23. virtual BOOL OnNewDocument();
  24. virtual void Serialize(CArchive& ar);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. UINT ThreadFunc(LPVOID pParam);
  29.     void SuspendSpinner(int nIndex,BOOL bSuspend);
  30. void DoSpin(int nIndex);
  31. virtual ~CTaskingDoc();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CTaskingDoc)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code !
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. CWinThread *m_pSpinThread[2];
  46. void InitSpinners();
  47. void CalcPoint(int nID,CSpinner *pSpin);
  48. CSpinner m_cSpin[4];
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_TASKINGDOC_H__D84BFB61_187B_4CE6_984C_391BE1F2068B__INCLUDED_)