| 32 | |
| 33 | |
| 34 | DcmObject::DcmObject(const DcmTag &tag, const Uint32 len) |
| 35 | { |
| 36 | Bdebug((6, "DcmObject::DcmObject(DcmTag&,len=%ld)", len )); |
| 37 | debug(( 8, "Object pointer this=0x%p", this )); |
| 38 | |
| 39 | Tag = new DcmTag( tag ); // copy-operator in DcmTag |
| 40 | Length = len; |
| 41 | errorFlag = EC_Normal; |
| 42 | fTransferState = ERW_init; |
| 43 | fTransferredBytes = 0; |
| 44 | |
| 45 | #ifdef DEBUG |
| 46 | testConstructDestruct = 1; // for debugging |
| 47 | #endif |
| 48 | |
| 49 | Edebug(()); |
| 50 | } |
| 51 | |
| 52 | |
| 53 | // ******************************** |
nothing calls this directly
no outgoing calls
no test coverage detected