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

  1. //////////////////////////////////////////////////////////////////////////////
  2. // NAME.......: WizPropertyPage.h                                               
  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. /////////////////////////////////////////////////////////////////////////////
  17. // CWizPropertyPage dialog
  18. class CWizPropertyPage : public CPropertyPage
  19. {
  20.     DECLARE_DYNCREATE(CWizPropertyPage)
  21.  
  22. // Construction
  23. public:
  24.     CWizPropertyPage(UINT id = NULL);
  25.     CWizPropertyPage(CWizPropertySheet* pWizSheet, UINT id);
  26.     ~CWizPropertyPage();
  27.  
  28. //Atributes
  29. public:
  30.     CWizPropertySheet* m_pWizSheet;
  31.  
  32. // Overrides
  33.     // ClassWizard generate virtual function overrides
  34.     //{{AFX_VIRTUAL(CWizPropertyPage)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. protected:
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CWizPropertyPage)
  43.         // NOTE: the ClassWizard will add member functions here
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46.  
  47. };
  48.