64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
|
// ZTestView.h : interface of the CZTestView class
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#if !defined(AFX_ZTESTVIEW_H__8915A006_8F5E_4CDF_AB04_7A75B8D88928__INCLUDED_)
|
||
|
#define AFX_ZTESTVIEW_H__8915A006_8F5E_4CDF_AB04_7A75B8D88928__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
|
||
|
class CZTestView : public CView
|
||
|
{
|
||
|
protected: // create from serialization only
|
||
|
CZTestView();
|
||
|
DECLARE_DYNCREATE(CZTestView)
|
||
|
|
||
|
// Attributes
|
||
|
public:
|
||
|
CZTestDoc* GetDocument();
|
||
|
|
||
|
// Operations
|
||
|
public:
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CZTestView)
|
||
|
public:
|
||
|
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
||
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
||
|
protected:
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
public:
|
||
|
virtual ~CZTestView();
|
||
|
#ifdef _DEBUG
|
||
|
virtual void AssertValid() const;
|
||
|
virtual void Dump(CDumpContext& dc) const;
|
||
|
#endif
|
||
|
|
||
|
protected:
|
||
|
|
||
|
// Generated message map functions
|
||
|
protected:
|
||
|
//{{AFX_MSG(CZTestView)
|
||
|
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
#ifndef _DEBUG // debug version in ZTestView.cpp
|
||
|
inline CZTestDoc* CZTestView::GetDocument()
|
||
|
{ return (CZTestDoc*)m_pDocument; }
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // !defined(AFX_ZTESTVIEW_H__8915A006_8F5E_4CDF_AB04_7A75B8D88928__INCLUDED_)
|