////////////////////////////////////////////////////////////////////////// TraceContents //////////////////////////////////////////////////////////////////////////
| 125 | // TraceContents |
| 126 | /////////////////////////////////////////////////////////////////////////////// |
| 127 | void cFSObject::TraceContents(int dl) const |
| 128 | { |
| 129 | if (dl < 0) |
| 130 | dl = cDebug::D_DEBUG; |
| 131 | |
| 132 | cDebug d("cFSObject::TraceContents"); |
| 133 | |
| 134 | d.Trace(dl, _T("%s\n"), GetName().AsString().c_str()); |
| 135 | // trace the property set's stats |
| 136 | GetPropSet()->TraceContents(dl); |
| 137 | } |
| 138 | |
| 139 | /////////////////////////////////////////////////////////////////////////////// |
| 140 | // retrieving the property set and children... |
no test coverage detected