distinguish.cpp

来自「不错的指纹识别系统源代码,完整可运行,可用于开发。」· C++ 代码 · 共 85 行

CPP
85
字号
// Distinguish.cpp : implementation file
//

#include "stdafx.h"
#include "FingerDemo.h"
#include "Distinguish.h"
#include "finger.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDistinguish
extern CFingerDemoApp theApp;

IMPLEMENT_DYNCREATE(CDistinguish, CFormView)

CDistinguish::CDistinguish()
	: CFormView(CDistinguish::IDD)
{
	//{{AFX_DATA_INIT(CDistinguish)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CDistinguish::~CDistinguish()
{
}

void CDistinguish::DoDataExchange(CDataExchange* pDX)
{
	CFormView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDistinguish)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDistinguish, CFormView)
	//{{AFX_MSG_MAP(CDistinguish)
	ON_BN_CLICKED(IDC_SHIBIE, OnShibie)
	ON_BN_CLICKED(IDC_INPORT_BMPFILE, OnInportBmpfile)
	ON_BN_CLICKED(IDC_INPORT_CAPTURE, OnInportCapture)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDistinguish diagnostics

#ifdef _DEBUG
void CDistinguish::AssertValid() const
{
	CFormView::AssertValid();
}

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

/////////////////////////////////////////////////////////////////////////////
// CDistinguish message handlers

void CDistinguish::OnShibie() 
{
	// TODO: Add your control notification handler code here
	
}

void CDistinguish::OnInportBmpfile() 
{
	// TODO: Add your control notification handler code here
	
}

void CDistinguish::OnInportCapture() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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