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.

50 lines
2.0 KiB

  1. // KeyLimits.h -- Key Limits template class header
  2. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  3. // 1999. This computer program includes Confidential, Proprietary
  4. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  5. // use, disclosure, and/or reproduction is prohibited unless authorized
  6. // in writing. All Rights Reserved.
  7. #if !defined(SLBCSP_KEYLIMITS_H)
  8. #define SLBCSP_KEYLIMITS_H
  9. template<class T>
  10. class KeyLimits
  11. {
  12. public:
  13. // Types
  14. // The following are defined as enums since VC++ 6.0 does
  15. // not support initialization of constant declarations.
  16. enum
  17. {
  18. cMinStrength = 0,
  19. cMaxStrength = 0,
  20. };
  21. // C'tors/D'tors
  22. // Operators
  23. // Operations
  24. // Access
  25. // Predicates
  26. protected:
  27. // Types
  28. // C'tors/D'tors
  29. // Operators
  30. // Operations
  31. // Access
  32. // Predicates
  33. // Variables
  34. private:
  35. // Types
  36. // C'tors/D'tors
  37. // Operators
  38. // Operations
  39. // Access
  40. // Predicates
  41. // Variables
  42. };
  43. #endif // SLBCSP_KEYLIMITS_H