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.

27 lines
616 B

  1. // HMScopeItem.inl: inlines for the CHMScopeItem class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #ifdef _DEBUG
  5. #define new DEBUG_NEW
  6. #endif
  7. //////////////////////////////////////////////////////////////////////
  8. // Back Pointer to HMObject
  9. //////////////////////////////////////////////////////////////////////
  10. inline CHMObject* CHMScopeItem::GetObjectPtr()
  11. {
  12. TRACEX(_T("CHMScopeItem::GetObjectPtr\n"));
  13. return m_pObject;
  14. }
  15. inline void CHMScopeItem::SetObjectPtr(CHMObject* pObject)
  16. {
  17. TRACEX(_T("CHMScopeItem::SetObjectPtr\n"));
  18. TRACEARGn(pObject);
  19. m_pObject = pObject;
  20. }