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.

23 lines
605 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: G P B A S E . H
  7. //
  8. // Contents: Abstract Base Class for Handling NLA Changes that affect
  9. // Group Policies
  10. // Notes:
  11. //
  12. // Author: ckotze 20 Feb 2001
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. class CGroupPolicyBase
  17. {
  18. public:
  19. CGroupPolicyBase(){};
  20. ~CGroupPolicyBase(){};
  21. virtual BOOL IsSameNetworkAsGroupPolicies() = 0;
  22. };