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.

48 lines
593 B

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