MCPcopy Create free account
hub / github.com/DCMTK/dcmtk / DcmObject

Method DcmObject

dcmdata/libsrc/dcobject.cc:34–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32
33
34DcmObject::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// ********************************

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected