home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1998 October / dpcb1098.iso / Business / Maxim / MAX5 / data.z / WizPropertyPage.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-15  |  2.9 KB  |  90 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. // NAME.......: WizPropertyPage.CPP                                               
  3. // PURPOSE....: base class for wizard property page
  4. // WRITTEN....: 96/09/27 by Darko Juvan
  5. // DESCRIPTION: 
  6. //
  7. // This code and information is provided "as is" without warranty of any
  8. // kind, either expressed or implied, including but not limited to the
  9. // implied warranties of merchantability and/or fitness for a particular
  10. // purpose..
  11. //
  12. // Copyright (c) 1998  Multiactive Software Inc.  All Rights Reserved.
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15.  
  16. #include "stdafx.h"
  17. #include "resource.h"
  18. #include "WizPropertySheet.h"
  19. #include "WizPropertyPage.h"
  20.  
  21. #ifdef _DEBUG
  22. #define new DEBUG_NEW
  23. #undef THIS_FILE
  24. static char THIS_FILE[] = __FILE__;
  25. #endif
  26.  
  27. IMPLEMENT_DYNCREATE(CWizPropertyPage, CPropertyPage)
  28.  
  29. //////////////////////////////////////////////////////////////////////////////
  30. //                        
  31. // FUNCTION...: CWizPropertyPage()
  32. //                                                  
  33. // DESCRIPTION: constructor
  34. //
  35. //////////////////////////////////////////////////////////////////////////////
  36. CWizPropertyPage::CWizPropertyPage(CWizPropertySheet* pWizSheet, UINT id)
  37.  : CPropertyPage(id)
  38. {
  39.     //Wizard property sheet pointer
  40.     m_pWizSheet = pWizSheet;
  41. }
  42.  
  43. //////////////////////////////////////////////////////////////////////////////
  44. //                        
  45. // FUNCTION...: CWizPropertyPage()
  46. //                                                  
  47. // DESCRIPTION: constructor
  48. //
  49. //////////////////////////////////////////////////////////////////////////////
  50. CWizPropertyPage::CWizPropertyPage(UINT id)
  51.  : CPropertyPage(id)
  52. {
  53. }
  54.  
  55. //////////////////////////////////////////////////////////////////////////////
  56. //                        
  57. // FUNCTION...: ~CWizPropertyPage()
  58. //                                                  
  59. // DESCRIPTION: destructor
  60. //
  61. //////////////////////////////////////////////////////////////////////////////
  62. CWizPropertyPage::~CWizPropertyPage()
  63. {
  64. }
  65.  
  66. //////////////////////////////////////////////////////////////////////////////
  67. //                        
  68. // FUNCTION...:    DoDataExchange()
  69. //                                                  
  70. // DESCRIPTION: MFC
  71. //
  72. //////////////////////////////////////////////////////////////////////////////
  73. void CWizPropertyPage::DoDataExchange(CDataExchange* pDX)
  74. {
  75.     CPropertyPage::DoDataExchange(pDX);
  76.     //{{AFX_DATA_MAP(CWizPropertyPage)
  77.         // NOTE: the ClassWizard will add DDX and DDV calls here
  78.     //}}AFX_DATA_MAP
  79. }
  80.  
  81.  
  82. BEGIN_MESSAGE_MAP(CWizPropertyPage, CPropertyPage)
  83.     //{{AFX_MSG_MAP(CWizPropertyPage)
  84.         // NOTE: the ClassWizard will add message map macros here
  85.     //}}AFX_MSG_MAP
  86. END_MESSAGE_MAP()
  87.  
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CWizPropertyPage message handlers
  90.