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.

46 lines
1019 B

  1. //#--------------------------------------------------------------
  2. //
  3. // File: valattrib.h
  4. //
  5. // Synopsis: This file holds the declarations of the
  6. // valattrib class
  7. //
  8. //
  9. // History: 9/23/97 MKarki Created
  10. //
  11. // Copyright (C) 1997-98 Microsoft Corporation
  12. // All rights reserved.
  13. //
  14. //----------------------------------------------------------------
  15. #ifndef _VALATTRIB_H_
  16. #define _VALATTRIB_H_
  17. #include "dictionary.h"
  18. #include "reportevent.h"
  19. #include "packetradius.h"
  20. class CValAttributes
  21. {
  22. public:
  23. HRESULT Validate(
  24. /*[in]*/ CPacketRadius *pCPacketRadius
  25. );
  26. BOOL Init (
  27. /*[in]*/ CDictionary *pCDictionary,
  28. /*[in]*/ CReportEvent *pCReportEvent
  29. );
  30. CValAttributes(VOID);
  31. virtual ~CValAttributes(VOID);
  32. private:
  33. CDictionary *m_pCDictionary;
  34. CReportEvent *m_pCReportEvent;
  35. };
  36. #endif // ifndef _VALATTRIB_H_