| 452 | } |
| 453 | |
| 454 | void DICOMParser::SetDICOMTagCallbacks( |
| 455 | doublebyte group, doublebyte element, VRTypes datatype, std::vector<DICOMCallback*>* cbVector) |
| 456 | { |
| 457 | Implementation->Map.insert(std::pair<const DICOMMapKey, DICOMMapValue>( |
| 458 | DICOMMapKey(group, element), DICOMMapValue(static_cast<doublebyte>(datatype), cbVector))); |
| 459 | } |
| 460 | |
| 461 | bool DICOMParser::CheckMagic(char* magic_number) |
| 462 | { |
no test coverage detected