comparison OrthancFramework/Sources/Enumerations.cpp @ 5438:7a20ee948676 debug-telemis

Added a new 'Telemis' manufacturer for DicomModalities
author Alain Mazy <am@osimis.io>
date Wed, 22 Nov 2023 12:57:07 +0100
parents c65e036d649b
children ac68a4383e51
comparison
equal deleted inserted replaced
5437:85da6dcd0e08 5438:7a20ee948676
805 return "Vitrea"; 805 return "Vitrea";
806 806
807 case ModalityManufacturer_GE: 807 case ModalityManufacturer_GE:
808 return "GE"; 808 return "GE";
809 809
810 case ModalityManufacturer_Telemis:
811 return "Telemis";
812
810 default: 813 default:
811 throw OrthancException(ErrorCode_ParameterOutOfRange); 814 throw OrthancException(ErrorCode_ParameterOutOfRange);
812 } 815 }
813 } 816 }
814 817
1584 } 1587 }
1585 else if (manufacturer == "GE") 1588 else if (manufacturer == "GE")
1586 { 1589 {
1587 return ModalityManufacturer_GE; 1590 return ModalityManufacturer_GE;
1588 } 1591 }
1592 else if (manufacturer == "Telemis")
1593 {
1594 return ModalityManufacturer_Telemis;
1595 }
1589 else if (manufacturer == "AgfaImpax" || 1596 else if (manufacturer == "AgfaImpax" ||
1590 manufacturer == "SyngoVia") 1597 manufacturer == "SyngoVia")
1591 { 1598 {
1592 result = ModalityManufacturer_GenericNoWildcardInDates; 1599 result = ModalityManufacturer_GenericNoWildcardInDates;
1593 obsolete = true; 1600 obsolete = true;