www.gusucode.com > VC图像处理-车牌识别系统源程序源码程序 > VC图像处理-车牌识别系统源程序源码程序/code/CharView.cpp

    // CharView.cpp : implementation file
// Download by http://www.NewXing.com

#include "stdafx.h"
#include "dip.h"
#include "CharView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCharView

IMPLEMENT_DYNCREATE(CCharView, CFormView)

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

CCharView::~CCharView()
{
}

void CCharView::DoDataExchange(CDataExchange* pDX)
{
	CFormView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CCharView)
	DDX_Control(pDX, IDC_EDIT_RESULT, m_result);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CCharView, CFormView)
	//{{AFX_MSG_MAP(CCharView)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCharView diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CCharView message handlers

void CCharView::OnOK() 
{
	// TODO: Add your control notification handler code here
	
}

void CCharView::OnCancel() 
{
	// TODO: Add your control notification handler code here
	
}