www.pudn.com > SurfWareNew06.3.5(LYW).rar > CreateMirrorSurface.cpp


// CreateMirrorSurface.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "surfware.h" 
#include "CreateMirrorSurface.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CreateMirrorSurface dialog 
 
 
CreateMirrorSurface::CreateMirrorSurface(CWnd* pParent /*=NULL*/) 
	: CDialog(CreateMirrorSurface::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CreateMirrorSurface) 
	m_A = 0.0; 
	m_B = 0.0; 
	m_C = 0.0; 
	m_D = 0.0; 
	//}}AFX_DATA_INIT 
} 
 
 
void CreateMirrorSurface::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CreateMirrorSurface) 
	DDX_Text(pDX, IDC_EDIT1, m_A); 
	DDX_Text(pDX, IDC_EDIT2, m_B); 
	DDX_Text(pDX, IDC_EDIT3, m_C); 
	DDX_Text(pDX, IDC_EDIT4, m_D); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CreateMirrorSurface, CDialog) 
	//{{AFX_MSG_MAP(CreateMirrorSurface) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CreateMirrorSurface message handlers