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.

57 lines
940 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation
  2. //
  3. // File: ClusterPage.h
  4. //
  5. // Synopsis: Declares the Cluster Page for the CYS
  6. // wizard. This page lets the user choose
  7. // between a new cluster or existing cluster
  8. //
  9. // History: 03/19/2001 JeffJon Created
  10. #ifndef __CYS_CLUSTERPAGE_H
  11. #define __CYS_CLUSTERPAGE_H
  12. #include "CYSWizardPage.h"
  13. class ClusterPage : public CYSWizardPage
  14. {
  15. public:
  16. // Constructor
  17. ClusterPage();
  18. // Destructor
  19. virtual
  20. ~ClusterPage();
  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. ClusterPage(const ClusterPage&);
  36. const ClusterPage& operator=(const ClusterPage&);
  37. };
  38. #endif // __CYS_CLUSTERPAGE_H