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


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