示例#1
0
void CObject::DebugDump(CDebugDumpContext ddc, unsigned int /*depth*/) const
{
    ddc.SetFrame("CObject");
    ddc.Log("address",  dynamic_cast<const CDebugDumpable*>(this), 0);
//    ddc.Log("memory starts at", dynamic_cast<const void*>(this));
//    ddc.Log("onHeap", CanBeDeleted());
}
示例#2
0
 void DebugDump(CDebugDumpContext ddc, unsigned int depth) const
 {
     ddc.SetFrame("CSeqDB_AliasMask");
     CObject::DebugDump(ddc, depth);
     ddc.Log("m_MaskType", m_MaskType);
     ddc.Log("m_Path", m_Path.GetPathS());
     ddc.Log("m_Begin", m_Begin);
     ddc.Log("m_End", m_End);
     ddc.Log("m_MemBit", m_MemBit);
 }