44 lines
1.0 KiB
C
44 lines
1.0 KiB
C
|
// sesadvw.h : interface of the CSesadumpView class
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
class CSesadumpView : public CView
|
||
|
{
|
||
|
protected: // create from serialization only
|
||
|
CSesadumpView();
|
||
|
DECLARE_DYNCREATE(CSesadumpView)
|
||
|
|
||
|
// Attributes
|
||
|
public:
|
||
|
CSesadumpDoc* GetDocument();
|
||
|
|
||
|
// Operations
|
||
|
public:
|
||
|
|
||
|
// Implementation
|
||
|
public:
|
||
|
virtual ~CSesadumpView();
|
||
|
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
||
|
#ifdef _DEBUG
|
||
|
virtual void AssertValid() const;
|
||
|
virtual void Dump(CDumpContext& dc) const;
|
||
|
#endif
|
||
|
|
||
|
protected:
|
||
|
|
||
|
// Generated message map functions
|
||
|
protected:
|
||
|
//{{AFX_MSG(CSesadumpView)
|
||
|
// NOTE - the ClassWizard will add and remove member functions here.
|
||
|
// DO NOT EDIT what you see in these blocks of generated code !
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
#ifndef _DEBUG // debug version in sesadvw.cpp
|
||
|
inline CSesadumpDoc* CSesadumpView::GetDocument()
|
||
|
{ return (CSesadumpDoc*)m_pDocument; }
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|