mythirdview.cpp

来自「手写数字识别程序. 该程序实现了经典的模板匹配算法, 基于神经网络的匹配算法等.」· C++ 代码 · 共 60 行

CPP
60
字号
// MyThirdView.cpp : implementation file
//

#include "stdafx.h"
#include "DSPLIT.h"
#include "MyThirdView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView

IMPLEMENT_DYNCREATE(CMyThirdView, CView)

CMyThirdView::CMyThirdView()
{
}

CMyThirdView::~CMyThirdView()
{
}


BEGIN_MESSAGE_MAP(CMyThirdView, CView)
	//{{AFX_MSG_MAP(CMyThirdView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView drawing

void CMyThirdView::OnDraw(CDC* pDC)
{
	CDocument* pDoc = GetDocument();
	// TODO: add draw code here
}

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView diagnostics

#ifdef _DEBUG
void CMyThirdView::AssertValid() const
{
	CView::AssertValid();
}

void CMyThirdView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView message handlers

⌨️ 快捷键说明

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