Source code of Windows XP (NT5)
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.

31 lines
707 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: itemhand.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Declaration for the item handler class. This encapsulates the call-back
  8. // functionality for the Parsers during an enumeration.
  9. //
  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