| 574 | } |
| 575 | |
| 576 | bool DICOMParser::ParseExplicitRecord(doublebyte, doublebyte, quadbyte& length, VRTypes& represent) |
| 577 | { |
| 578 | doublebyte representation = DataFile->ReadDoubleByte(); |
| 579 | |
| 580 | bool valid = this->IsValidRepresentation(representation, length, represent); |
| 581 | |
| 582 | if (valid) |
| 583 | { |
| 584 | return true; |
| 585 | } |
| 586 | else |
| 587 | { |
| 588 | represent = VR_UNKNOWN; |
| 589 | length = 0; |
| 590 | return false; |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | bool DICOMParser::ParseImplicitRecord( |
| 595 | doublebyte group, doublebyte element, quadbyte& length, VRTypes& represent) |
nothing calls this directly
no test coverage detected