123view.h

来自「用vc++编写的神经网络算法识别数字的一个程序」· C头文件 代码 · 共 72 行

H
72
字号
// 123View.h : interface of the CMy123View class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_123VIEW_H__3974410D_DD90_46F3_83BF_6C07BB5E88EE__INCLUDED_)
#define AFX_123VIEW_H__3974410D_DD90_46F3_83BF_6C07BB5E88EE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <math.h>

class CMy123View : public CView
{
protected: // create from serialization only
	CMy123View();
	DECLARE_DYNCREATE(CMy123View)

// Attributes
public:
	CMy123Doc* GetDocument();

// Operations
public:
    
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMy123View)
	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 ~CMy123View();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CMy123View)
	afx_msg void Ontraining();
	afx_msg void Onwork();
	afx_msg void Onpaint();
	afx_msg void Onjianjie();
	afx_msg void Onxianshi();
	afx_msg void Oninput();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in 123View.cpp
inline CMy123Doc* CMy123View::GetDocument()
   { return (CMy123Doc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_123VIEW_H__3974410D_DD90_46F3_83BF_6C07BB5E88EE__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?