www.pudn.com > SurfaceRecon.rar > ThresholdDlg.cpp
// ThresholdDlg.cpp : implementation file
//
#include "stdafx.h"
#include "MITKTest.h"
#include "ThresholdDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CThresholdDlg dialog
CThresholdDlg::CThresholdDlg(CWnd* pParent /*=NULL*/)
: CDialog(CThresholdDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CThresholdDlg)
m_HighValue = 0.0f;
m_LowValue = 0.0f;
//}}AFX_DATA_INIT
}
void CThresholdDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CThresholdDlg)
DDX_Text(pDX, IDC_EDIT_HIGHTH, m_HighValue);
DDX_Text(pDX, IDC_EDIT_LOWTH, m_LowValue);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CThresholdDlg, CDialog)
//{{AFX_MSG_MAP(CThresholdDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CThresholdDlg message handlers