www.pudn.com > CHECKER.zip > DEBUGVW.H


// debugvw.h : header file 
// 
 
///////////////////////////////////////////////////////////////////////////// 
// DebugView view 
 
class DebugView : public CScrollView 
{ 
public: 
	DebugView();           // class wizard makes this protected but I want pubic! 
protected: 
	DECLARE_DYNCREATE(DebugView) 
 
// Attributes 
public: 
 
protected: 
    int m_linehi; 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(DebugView) 
	protected: 
	virtual void OnDraw(CDC* pDC);      // overridden to draw this view 
	virtual void OnInitialUpdate();     // first time after construct 
	//}}AFX_VIRTUAL 
 
// Implementation 
protected: 
	virtual ~DebugView(); 
#ifdef _DEBUG 
	virtual void AssertValid() const; 
	virtual void Dump(CDumpContext& dc) const; 
#endif 
 
	// Generated message map functions 
	//{{AFX_MSG(DebugView) 
		// NOTE - the ClassWizard will add and remove member functions here. 
	//}}AFX_MSG 
	DECLARE_MESSAGE_MAP() 
}; 
 
/////////////////////////////////////////////////////////////////////////////