mirror of https://github.com/tongzx/nt5src
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
27 lines
616 B
// HMScopeItem.inl: inlines for the CHMScopeItem class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Back Pointer to HMObject
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
inline CHMObject* CHMScopeItem::GetObjectPtr()
|
|
{
|
|
TRACEX(_T("CHMScopeItem::GetObjectPtr\n"));
|
|
|
|
return m_pObject;
|
|
}
|
|
|
|
inline void CHMScopeItem::SetObjectPtr(CHMObject* pObject)
|
|
{
|
|
TRACEX(_T("CHMScopeItem::SetObjectPtr\n"));
|
|
TRACEARGn(pObject);
|
|
|
|
m_pObject = pObject;
|
|
}
|
|
|