SysLogView.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
源码类别:

网格计算

开发平台:

Visual C++

  1. #ifndef _SYSLOG_VIEW_H
  2. #define _SYSLOG_VIEW_H
  3. /////////////////////////////////////////////////////////////////////////////
  4. #ifndef __AFXEXT_H__
  5. #include <afxext.h>
  6. #endif
  7. // SysLogView.h : header file
  8. class CSysLogView : public CView
  9. {
  10. protected:
  11. CSysLogView();           // protected constructor used by dynamic creation
  12. DECLARE_DYNCREATE(CSysLogView)
  13. // Attributes
  14. public:
  15. // Operations
  16. public:
  17. CEdit& GetEditCtrl( ) {return m_EditSysLog;};
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CSysLogView)
  21. protected:
  22. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. protected:
  26. virtual ~CSysLogView();
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CSysLogView)
  34. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35. afx_msg void OnSize(UINT nType, int cx, int cy);
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. private:
  39. CEdit m_EditSysLog; //system log output window.
  40. };
  41. #endif //_SYSLOG_VIEW_H