71067401ae
git-svn-id: svn://10.65.10.50/trunk@5000 c028cbd2-c16b-5b4b-a496-9718f37d4682
44 lines
1.0 KiB
C++
Executable File
44 lines
1.0 KiB
C++
Executable File
// 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
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|