// WizSheet.cpp : implementation file // #include "stdafx.h" #include "keyring.h" #include "WizSheet.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CWizardSheet IMPLEMENT_DYNAMIC(CWizardSheet, CPropertySheet) //--------------------------------------------------------------------------- CWizardSheet::CWizardSheet() :CPropertySheet() { short booger; booger = 1; booger += 2; // That makes three boogers. } //--------------------------------------------------------------------------- CWizardSheet::CWizardSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(nIDCaption, pParentWnd, iSelectPage) { } //--------------------------------------------------------------------------- CWizardSheet::CWizardSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(pszCaption, pParentWnd, iSelectPage) { } //--------------------------------------------------------------------------- CWizardSheet::~CWizardSheet() { } BEGIN_MESSAGE_MAP(CWizardSheet, CPropertySheet) //{{AFX_MSG_MAP(CWizardSheet) // NOTE - the ClassWizard will add and remove mapping macros here. //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CWizardSheet message handlers