| 1282 | } |
| 1283 | |
| 1284 | void DICOMAppHelper::GantryAngleCallback( |
| 1285 | DICOMParser* parser, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char* val, quadbyte) |
| 1286 | { |
| 1287 | float fval = 0; |
| 1288 | |
| 1289 | if (val) |
| 1290 | { |
| 1291 | fval = DICOMFile::ReturnAsFloat(val, parser->GetDICOMFile()->GetPlatformIsBigEndian()); |
| 1292 | } |
| 1293 | |
| 1294 | this->GantryAngle = fval; |
| 1295 | } |
| 1296 | |
| 1297 | #ifdef _MSC_VER |
| 1298 | #pragma warning(pop) |
nothing calls this directly
no test coverage detected