| 592 | } |
| 593 | |
| 594 | bool DICOMParser::ParseImplicitRecord( |
| 595 | doublebyte group, doublebyte element, quadbyte& length, VRTypes& represent) |
| 596 | { |
| 597 | DICOMImplicitTypeMap::iterator iter = Implementation->TypeMap.find(DICOMMapKey(group, element)); |
| 598 | represent = VRTypes((*iter).second); |
| 599 | // |
| 600 | // length? |
| 601 | // |
| 602 | length = DataFile->ReadQuadByte(); |
| 603 | return false; |
| 604 | } |
| 605 | |
| 606 | void DICOMParser::TransferSyntaxCallback( |
| 607 | DICOMParser*, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char* val, quadbyte) |
nothing calls this directly
no test coverage detected