home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- // NAME.......: WizPropertyPage.h
- // PURPOSE....: base class for wizard property page
- // WRITTEN....: 96/09/27 by Darko Juvan
- // DESCRIPTION:
- //
- // This code and information is provided "as is" without warranty of any
- // kind, either expressed or implied, including but not limited to the
- // implied warranties of merchantability and/or fitness for a particular
- // purpose..
- //
- // Copyright (c) 1998 Multiactive Software Inc. All Rights Reserved.
- //
- //////////////////////////////////////////////////////////////////////////////
-
- /////////////////////////////////////////////////////////////////////////////
- // CWizPropertyPage dialog
- class CWizPropertyPage : public CPropertyPage
- {
- DECLARE_DYNCREATE(CWizPropertyPage)
-
- // Construction
- public:
- CWizPropertyPage(UINT id = NULL);
- CWizPropertyPage(CWizPropertySheet* pWizSheet, UINT id);
- ~CWizPropertyPage();
-
- //Atributes
- public:
- CWizPropertySheet* m_pWizSheet;
-
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CWizPropertyPage)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CWizPropertyPage)
- // NOTE: the ClassWizard will add member functions here
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- };
-