home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / C_C++ / BisonFlexWizard / data1.cab / Src / Wizard / Cstm3Dlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-16  |  1.4 KB  |  57 lines

  1. // cstm3dlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Parser.h"
  6. #include "cstm3dlg.h"
  7. #include "Parseraw.h"
  8.  
  9. #ifdef _PSEUDO_DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCustom3Dlg dialog
  16.  
  17.  
  18. CCustom3Dlg::CCustom3Dlg()
  19.     : CAppWizStepDlg(CCustom3Dlg::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CCustom3Dlg)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CCustom3Dlg::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CAppWizStepDlg::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CCustom3Dlg)
  31.         // NOTE: the ClassWizard will add DDX and DDV calls here
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35. // This is called whenever the user presses Next, Back, or Finish with this step
  36. //  present.  Do all validation & data exchange from the dialog in this function.
  37. BOOL CCustom3Dlg::OnDismiss()
  38. {
  39.     if (!UpdateData(TRUE))
  40.         return FALSE;
  41.  
  42.     // TODO: Set template variables based on the dialog's data.
  43.  
  44.     return TRUE;    // return FALSE if the dialog shouldn't be dismissed
  45. }
  46.  
  47.  
  48. BEGIN_MESSAGE_MAP(CCustom3Dlg, CAppWizStepDlg)
  49.     //{{AFX_MSG_MAP(CCustom3Dlg)
  50.         // NOTE: the ClassWizard will add message map macros here
  51.     //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53.  
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CCustom3Dlg message handlers
  57.