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.

56 lines
1.0 KiB

  1. // Copyright (c) 2001 Microsoft Corporation
  2. //
  3. // File: AdminPackAndWebPage.h
  4. //
  5. // Synopsis: Declares the AdminPackAndWebPage that
  6. // asks the user if they want to install
  7. // the Admin Pack and the Web Admin tools
  8. //
  9. // History: 06/01/2001 JeffJon Created
  10. #ifndef __CYS_ADMINPACKANDWEBPAGE_H
  11. #define __CYS_ADMINPACKANDWEBPAGE_H
  12. #include "CYSWizardPage.h"
  13. class AdminPackAndWebPage : public CYSWizardPage
  14. {
  15. public:
  16. // Constructor
  17. AdminPackAndWebPage();
  18. // Destructor
  19. virtual
  20. ~AdminPackAndWebPage();
  21. // Dialog overrides
  22. virtual
  23. void
  24. OnInit();
  25. virtual
  26. bool
  27. OnSetActive();
  28. protected:
  29. // CYSWizardPage overrides
  30. virtual
  31. int
  32. Validate();
  33. private:
  34. // not defined: no copying allowed
  35. AdminPackAndWebPage(const AdminPackAndWebPage&);
  36. const AdminPackAndWebPage& operator=(const AdminPackAndWebPage&);
  37. };
  38. #endif // __CYS_ADMINPACKANDWEBPAGE_H