Source code of Windows XP (NT5)
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

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // dcpromo2 wizard base class
  4. //
  5. // 1-15-97 sburns
  6. #ifndef PAGE_HPP_INCLUDED
  7. #define PAGE_HPP_INCLUDED
  8. class DCPromoWizardPage : public WizardPage
  9. {
  10. public:
  11. virtual
  12. bool
  13. OnWizNext();
  14. protected:
  15. DCPromoWizardPage(
  16. int dialogResID,
  17. int titleResID,
  18. int subtitleResID,
  19. bool isInteriorPage = true);
  20. virtual ~DCPromoWizardPage();
  21. // PropertyPage overrides
  22. virtual
  23. bool
  24. OnQueryCancel();
  25. virtual
  26. int
  27. Validate() = 0;
  28. private:
  29. // not defined: no copying allowed
  30. DCPromoWizardPage(const DCPromoWizardPage&);
  31. const DCPromoWizardPage& operator=(const DCPromoWizardPage&);
  32. };
  33. #endif // PAGE_HPP_INCLUDED