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.

29 lines
1.4 KiB

  1. /*************************************************************************/
  2. /* Copyright (C) 1999 Microsoft Corporation */
  3. /* File: EObj.h */
  4. /* Description: Declaration of CEventObject, which is used to hold event */
  5. /* descriptions. */
  6. /* Author: David Janecek */
  7. /*************************************************************************/
  8. #ifndef __EOBJ_H
  9. #define __EOBJ_H
  10. /*************************************************************************/
  11. /* Class: CEventObject */
  12. /* Description: Object that contains the events. */
  13. /*************************************************************************/
  14. class CEventObject{
  15. public:
  16. CEventObject(BSTR strObjectID, BSTR strEvent, BSTR strEventCode) :
  17. m_strObjectID(strObjectID),
  18. m_strEvent(strEvent),
  19. m_strEventCode(strEventCode){}
  20. CComBSTR m_strObjectID;
  21. CComBSTR m_strEvent;
  22. CComBSTR m_strEventCode;
  23. }; /* end of class CEventObject */
  24. #endif //__EOBJ_H
  25. /*************************************************************************/
  26. /* End of file: EObj.h */
  27. /*************************************************************************/