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.

54 lines
792 B

  1. // Copyright (C) 1997 Microsoft Corporation
  2. //
  3. // replica or member server page
  4. //
  5. // 12-16-97 sburns
  6. #ifndef REPLMEM_HPP_INCLUDED
  7. #define REPLMEM_HPP_INCLUDED
  8. #include "page.hpp"
  9. class ReplicaOrMemberPage : public DCPromoWizardPage
  10. {
  11. public:
  12. ReplicaOrMemberPage();
  13. protected:
  14. virtual ~ReplicaOrMemberPage();
  15. // Dialog overrides
  16. virtual
  17. void
  18. OnInit();
  19. // PropertyPage overrides
  20. virtual
  21. bool
  22. OnSetActive();
  23. // DCPromoWizardPage overrides
  24. virtual
  25. int
  26. Validate();
  27. private:
  28. // not defined; no copying allowed
  29. ReplicaOrMemberPage(const ReplicaOrMemberPage&);
  30. const ReplicaOrMemberPage& operator=(const ReplicaOrMemberPage&);
  31. };
  32. #endif // REPLMEM_HPP_INCLUDED