1 // DlgIsos.cpp : implementation file
2 //
3 
4 #include "stdafx.h"
5 
6 #include "DlgIsos.h"
7 
8 #include "Viewer3dApp.h"
9 
10 #ifdef _DEBUG
11 #define new DEBUG_NEW
12 #undef THIS_FILE
13 static char THIS_FILE[] = __FILE__;
14 #endif
15 
16 /////////////////////////////////////////////////////////////////////////////
17 // DlgIsos dialog
18 
19 
DlgIsos(CWnd * pParent,int nisou,int nisov)20 DlgIsos::DlgIsos(CWnd* pParent,
21 				 int nisou,
22 				 int nisov)
23 	: CDialog(DlgIsos::IDD, pParent)
24 {
25 	//{{AFX_DATA_INIT(DlgIsos)
26 	m_isou = nisou;
27 	m_isov = nisov;
28 	//}}AFX_DATA_INIT
29 }
30 
31 
DoDataExchange(CDataExchange * pDX)32 void DlgIsos::DoDataExchange(CDataExchange* pDX)
33 {
34 	CDialog::DoDataExchange(pDX);
35 	//{{AFX_DATA_MAP(DlgIsos)
36 	DDX_Text(pDX, IDC_EDIT_ISOU, m_isou);
37 	DDX_Text(pDX, IDC_EDIT_ISOV, m_isov);
38 	//}}AFX_DATA_MAP
39 }
40 
41 
42 BEGIN_MESSAGE_MAP(DlgIsos, CDialog)
43 	//{{AFX_MSG_MAP(DlgIsos)
44 		// NOTE: the ClassWizard will add message map macros here
45 	//}}AFX_MSG_MAP
46 END_MESSAGE_MAP()
47 
48 /////////////////////////////////////////////////////////////////////////////
49 // DlgIsos message handlers
50