successview.h
来自「一个简单的计算器功能 真的 让你了解他 你难道不相信吗」· C头文件 代码 · 共 67 行
H
67 行
// SuccessView.h : interface of the CSuccessView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_SUCCESSVIEW_H__40DB587A_95B1_452C_B944_FC89CD552FC0__INCLUDED_)
#define AFX_SUCCESSVIEW_H__40DB587A_95B1_452C_B944_FC89CD552FC0__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSuccessView : public CView
{
protected: // create from serialization only
CSuccessView();
DECLARE_DYNCREATE(CSuccessView)
// Attributes
public:
CSuccessDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSuccessView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CSuccessView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CSuccessView)
afx_msg void OnDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in SuccessView.cpp
inline CSuccessDoc* CSuccessView::GetDocument()
{ return (CSuccessDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SUCCESSVIEW_H__40DB587A_95B1_452C_B944_FC89CD552FC0__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?