SysLogView.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
- #ifndef _SYSLOG_VIEW_H
- #define _SYSLOG_VIEW_H
- /////////////////////////////////////////////////////////////////////////////
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
- // SysLogView.h : header file
- class CSysLogView : public CView
- {
- protected:
- CSysLogView(); // protected constructor used by dynamic creation
- DECLARE_DYNCREATE(CSysLogView)
- // Attributes
- public:
- // Operations
- public:
- CEdit& GetEditCtrl( ) {return m_EditSysLog;};
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CSysLogView)
- protected:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- virtual ~CSysLogView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- // Generated message map functions
- protected:
- //{{AFX_MSG(CSysLogView)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnSize(UINT nType, int cx, int cy);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- CEdit m_EditSysLog; //system log output window.
- };
- #endif //_SYSLOG_VIEW_H