SelectSlopeDialog.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //===========================================================================//
  2. // Copyright (C) Microsoft Corporation. All rights reserved. //
  3. //===========================================================================//
  4. // SelectSlopeDialog.cpp : implementation file
  5. //
  6. #include "stdafx.h"
  7. #include "resource.h"
  8. #include "SelectSlopeDialog.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // SelectSlopeDialog dialog
  16. SelectSlopeDialog::SelectSlopeDialog(CWnd* pParent /*=NULL*/)
  17. : CDialog(SelectSlopeDialog::IDD, pParent)
  18. {
  19. //{{AFX_DATA_INIT(SelectSlopeDialog)
  20. m_MaxEdit = 0.0f;
  21. m_MinEdit = 0.0f;
  22. //}}AFX_DATA_INIT
  23. }
  24. void SelectSlopeDialog::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(SelectSlopeDialog)
  28. DDX_Text(pDX, IDC_SELECT_SLOPE_MAX_EDIT, m_MaxEdit);
  29. DDX_Text(pDX, IDC_SELECT_SLOPE_MIN_EDIT, m_MinEdit);
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(SelectSlopeDialog, CDialog)
  33. //{{AFX_MSG_MAP(SelectSlopeDialog)
  34. // NOTE: the ClassWizard will add message map macros here
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // SelectSlopeDialog message handlers