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.

51 lines
655 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // welcome page
  4. //
  5. // 12-15-97 sburns
  6. #ifndef WELCOMEPAGE_HPP_INCLUDED
  7. #define WELCOMEPAGE_HPP_INCLUDED
  8. class WelcomePage : public DCPromoWizardPage
  9. {
  10. public:
  11. WelcomePage();
  12. protected:
  13. virtual ~WelcomePage();
  14. // Dialog overrides
  15. virtual
  16. void
  17. OnInit();
  18. // PropertyPage overrides
  19. virtual
  20. bool
  21. OnSetActive();
  22. // DCPromoWizardPage overrides
  23. virtual
  24. int
  25. Validate();
  26. private:
  27. // not defined; no copying allowed
  28. WelcomePage(const WelcomePage&);
  29. const WelcomePage& operator=(const WelcomePage&);
  30. };
  31. #endif // WELCOMEPAGE_HPP_INCLUDED