| 691 | } |
| 692 | |
| 693 | void DICOMAppHelper::BitsAllocatedCallback( |
| 694 | DICOMParser* parser, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char* val, quadbyte) |
| 695 | { |
| 696 | this->BitsAllocated = |
| 697 | DICOMFile::ReturnAsUnsignedShort(val, parser->GetDICOMFile()->GetPlatformIsBigEndian()); |
| 698 | #ifdef DEBUG_DICOM_APP_HELPER |
| 699 | std::cout << "Bits allocated: " << this->BitsAllocated << std::endl; |
| 700 | #endif |
| 701 | } |
| 702 | |
| 703 | void DICOMAppHelper::ToggleSwapBytesCallback( |
| 704 | DICOMParser* parser, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char*, quadbyte len) |
nothing calls this directly
no test coverage detected