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.

37 lines
582 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. ITEMHAND.H
  5. History:
  6. --*/
  7. //
  8. // Declaration for the item handler class. This encapsulates the call-back
  9. // functionality for the Parsers during an enumeration.
  10. //
  11. #ifndef ITEMHAND_H
  12. #define ITEMHAND_H
  13. class LTAPIENTRY CLocItemHandler : public CReporter, public CCancelableObject
  14. {
  15. public:
  16. CLocItemHandler();
  17. void AssertValid(void) const;
  18. virtual BOOL HandleItemSet(CLocItemSet &) = 0;
  19. virtual ~CLocItemHandler();
  20. private:
  21. };
  22. #endif // ITEMHAND_H