www.pudn.com > 1012.zip > DlgTrihedron.cpp


// DlgTrihedron.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "SCAD.h" 
#include "DlgTrihedron.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgTrihedron dialog 
 
 
CDlgTrihedron::CDlgTrihedron(CWnd* pParent /*=NULL*/) 
	: CDialog(CDlgTrihedron::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CDlgTrihedron) 
	m_dAng = 60.0f; 
	m_dLen = 100.0f; 
	m_strFileName = _T("aaa"); 
	//}}AFX_DATA_INIT 
} 
 
 
void CDlgTrihedron::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CDlgTrihedron) 
	DDX_Text(pDX, IDC_EDIT_ANGLE, m_dAng); 
	DDX_Text(pDX, IDC_EDIT_LEN, m_dLen); 
	DDX_Text(pDX, IDC_EDIT_FILENAME, m_strFileName); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CDlgTrihedron, CDialog) 
	//{{AFX_MSG_MAP(CDlgTrihedron) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgTrihedron message handlers