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
964 B

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