Leaked source code of windows server 2003
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
741 B

  1. #ifndef FINISH_PAGE_HPP_INCLUDED
  2. #define FINISH_PAGE_HPP_INCLUDED
  3. class FinishPage : public WizardPage
  4. {
  5. public:
  6. FinishPage
  7. (
  8. const bool someRepairWasRun_,
  9. const String &logPath_
  10. );
  11. protected:
  12. virtual ~FinishPage();
  13. // WizardPage overrides
  14. virtual
  15. bool
  16. OnSetActive();
  17. bool
  18. OnCommand(
  19. HWND windowFrom,
  20. unsigned controlIdFrom,
  21. unsigned code);
  22. virtual
  23. bool
  24. OnWizBack();
  25. private:
  26. bool someRepairWasRun;
  27. String logPath;
  28. // not defined: no copying allowed
  29. FinishPage(const FinishPage&);
  30. const FinishPage& operator=(const FinishPage&);
  31. };
  32. #endif // FINISH_PAGE_HPP_INCLUDED