#include <CandChopListHandle.h>
Inheritance diagram for CandChopListHandle:

Public Member Functions | |
| CandChopListHandle () | |
| CandChopListHandle (const CandChopListHandle &cdlh) | |
| CandChopListHandle (CandChopList *cdl) | |
| virtual | ~CandChopListHandle () |
| virtual CandChopListHandle * | DupHandle () const |
| virtual void | Trace (const char *c="") const |
Definition at line 21 of file CandChopListHandle.h.
| CandChopListHandle::CandChopListHandle | ( | ) |
| CandChopListHandle::CandChopListHandle | ( | const CandChopListHandle & | cdlh | ) |
| CandChopListHandle::CandChopListHandle | ( | CandChopList * | cdl | ) |
| CandChopListHandle::~CandChopListHandle | ( | ) | [virtual] |
| CandChopListHandle * CandChopListHandle::DupHandle | ( | ) | const [virtual] |
Reimplemented from CandHandle.
Definition at line 48 of file CandChopListHandle.cxx.
References CandChopListHandle().
00049 { 00050 return (new CandChopListHandle(*this)); 00051 }
| void CandChopListHandle::Trace | ( | const char * | c = "" |
) | const [virtual] |
Reimplemented from CandHandle.
Definition at line 55 of file CandChopListHandle.cxx.
References Msg::kDebug, MSG, and CandHandle::Trace().
00056 { 00057 MSG("Cand", Msg::kDebug) 00058 << "**********Begin CandChopListHandle::Trace(\"" << c << "\")" << endl 00059 << "Information from CandChopListHandle's CandHandle: " << endl; 00060 CandHandle::Trace(c); 00061 MSG("Cand", Msg::kDebug) 00062 << "**********End CandChopListHandle::Trace(\"" << c << "\")" << endl; 00063 }
1.4.7