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.

53 lines
943 B

  1. // Copyright (c) 2002 Microsoft Corporation
  2. //
  3. // File: WebApplicationPage.h
  4. //
  5. // Synopsis: Declares the Web Application page
  6. // for the CYS Wizard
  7. //
  8. // History: 04/22/2002 JeffJon Created
  9. #ifndef __CYS_WEBAPPLICATIONPAGE_H
  10. #define __CYS_WEBAPPLICATIONPAGE_H
  11. #include "CYSWizardPage.h"
  12. class WebApplicationPage : public CYSWizardPage
  13. {
  14. public:
  15. // Constructor
  16. WebApplicationPage();
  17. // Destructor
  18. virtual
  19. ~WebApplicationPage();
  20. // Dialog overrides
  21. virtual
  22. bool
  23. OnSetActive();
  24. protected:
  25. // CYSWizardPage overrides
  26. virtual
  27. int
  28. Validate();
  29. private:
  30. // not defined: no copying allowed
  31. WebApplicationPage(const WebApplicationPage&);
  32. const WebApplicationPage& operator=(const WebApplicationPage&);
  33. };
  34. #endif // __CYS_WEBAPPLICATIONPAGE_H