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.

39 lines
472 B

  1. #ifndef WELCOME_PAGE_HPP_INCLUDED
  2. #define WELCOME_PAGE_HPP_INCLUDED
  3. class WelcomePage : public WizardPage
  4. {
  5. public:
  6. WelcomePage();
  7. protected:
  8. virtual ~WelcomePage();
  9. // WizardPage overrides
  10. virtual
  11. void
  12. OnInit();
  13. virtual
  14. bool
  15. OnSetActive();
  16. private:
  17. // not defined: no copying allowed
  18. WelcomePage(const WelcomePage&);
  19. const WelcomePage& operator=(const WelcomePage&);
  20. };
  21. #endif // WELCOME_PAGE_HPP_INCLUDED