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.

39 lines
812 B

  1. // RuleEvent.h: interface for the CRuleEvent class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_RULEEVENT_H__5F72D13F_8D58_11D3_BE84_0000F87A3912__INCLUDED_)
  5. #define AFX_RULEEVENT_H__5F72D13F_8D58_11D3_BE84_0000F87A3912__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Event.h"
  10. class CRuleEvent : public CEvent
  11. {
  12. DECLARE_DYNCREATE(CRuleEvent)
  13. // Construction/Destruction
  14. public:
  15. CRuleEvent();
  16. virtual ~CRuleEvent();
  17. // Event ID
  18. public:
  19. int m_iID;
  20. // Message
  21. public:
  22. CString m_sMessage;
  23. // Result Pane Item Members
  24. public:
  25. virtual CHMEventResultsPaneItem* CreateResultsPaneItem(CResultsPaneView* pView);
  26. };
  27. #include "RuleEvent.inl"
  28. #endif // !defined(AFX_RULEEVENT_H__5F72D13F_8D58_11D3_BE84_0000F87A3912__INCLUDED_)