mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
746 B
52 lines
746 B
// Copyright (C) 1997 Microsoft Corporation
|
|
//
|
|
// dcpromo2 wizard base class
|
|
//
|
|
// 1-15-97 sburns
|
|
|
|
|
|
|
|
#ifndef PAGE_HPP_INCLUDED
|
|
#define PAGE_HPP_INCLUDED
|
|
|
|
|
|
|
|
class DCPromoWizardPage : public WizardPage
|
|
{
|
|
public:
|
|
|
|
virtual
|
|
bool
|
|
OnWizNext();
|
|
|
|
protected:
|
|
|
|
DCPromoWizardPage(
|
|
int dialogResID,
|
|
int titleResID,
|
|
int subtitleResID,
|
|
bool isInteriorPage = true);
|
|
|
|
virtual ~DCPromoWizardPage();
|
|
|
|
// PropertyPage overrides
|
|
|
|
virtual
|
|
bool
|
|
OnQueryCancel();
|
|
|
|
virtual
|
|
int
|
|
Validate() = 0;
|
|
|
|
private:
|
|
|
|
// not defined: no copying allowed
|
|
DCPromoWizardPage(const DCPromoWizardPage&);
|
|
const DCPromoWizardPage& operator=(const DCPromoWizardPage&);
|
|
};
|
|
|
|
|
|
|
|
#endif // PAGE_HPP_INCLUDED
|
|
|