www.pudn.com > ImageProcessing.rar.rar > DlgCAP.cpp


// DlgCAP.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "ImageProcessing.h" 
#include "DlgCAP.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgCAP dialog 
 
 
CDlgCAP::CDlgCAP(CWnd* pParent /*=NULL*/) 
	: CDialog(CDlgCAP::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CDlgCAP) 
	m_begin = 0; 
	m_end = 0; 
	//}}AFX_DATA_INIT 
} 
 
 
void CDlgCAP::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CDlgCAP) 
	DDX_Text(pDX, IDC_EDIT_BEGIN, m_begin); 
	DDV_MinMaxInt(pDX, m_begin, 0, 10000); 
	DDX_Text(pDX, IDC_EDIT_END, m_end); 
	DDV_MinMaxInt(pDX, m_end, 0, 10000); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CDlgCAP, CDialog) 
	//{{AFX_MSG_MAP(CDlgCAP) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgCAP message handlers