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.

60 lines
805 B

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