diff 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
line wrap: on
line diff
--- a/OrthancFramework/Sources/Enumerations.cpp	Wed Nov 22 09:39:35 2023 +0100
+++ b/OrthancFramework/Sources/Enumerations.cpp	Wed Nov 22 12:57:07 2023 +0100
@@ -807,6 +807,9 @@
       case ModalityManufacturer_GE:
         return "GE";
       
+      case ModalityManufacturer_Telemis:
+        return "Telemis";
+
       default:
         throw OrthancException(ErrorCode_ParameterOutOfRange);
     }
@@ -1586,6 +1589,10 @@
     {
       return ModalityManufacturer_GE;
     }
+    else if (manufacturer == "Telemis")
+    {
+      return ModalityManufacturer_Telemis;
+    }
     else if (manufacturer == "AgfaImpax" ||
              manufacturer == "SyngoVia")
     {