DBpParamater.cpp
上传用户:kennygump
上传日期:2022-07-22
资源大小:347k
文件大小:1k
源码类别:

图形/文字识别

开发平台:

Visual C++

  1. // DBpParamater.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "getchar.h"
  5. #include "DBpParamater.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDBpParamater dialog
  13. CDBpParamater::CDBpParamater(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDBpParamater::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDBpParamater)
  17. m_a = 0.0;
  18. m_eta = 0.0;
  19. m_ex = 0.0;
  20. m_hn = 0;
  21. //}}AFX_DATA_INIT
  22. }
  23. void CDBpParamater::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CDBpParamater)
  27. DDX_Text(pDX, IDC_a, m_a);
  28. DDX_Text(pDX, IDC_eta, m_eta);
  29. DDX_Text(pDX, IDC_ex, m_ex);
  30. DDX_Text(pDX, IDC_n_hidden, m_hn);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(CDBpParamater, CDialog)
  34. //{{AFX_MSG_MAP(CDBpParamater)
  35. // NOTE: the ClassWizard will add message map macros here
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CDBpParamater message handlers