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

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

#include "stdafx.h"
#include "dip.h"
#include "RecvChar.h"

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

/////////////////////////////////////////////////////////////////////////////
// CRecvChar dialog


CRecvChar::CRecvChar(CWnd* pParent /*=NULL*/)
	: CDialog(CRecvChar::IDD, pParent)
{
	//{{AFX_DATA_INIT(CRecvChar)
	m_char = _T("");
	//}}AFX_DATA_INIT
}


void CRecvChar::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CRecvChar)
	DDX_Text(pDX, IDC_CHAR, m_char);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CRecvChar, CDialog)
	//{{AFX_MSG_MAP(CRecvChar)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CRecvChar message handlers