diff OrthancFramework/Sources/Enumerations.cpp @ 4677:521e39b3f2c0

Fix issue #146 (Update Anonyization to 2019c) - was actually updated to 2021b
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 03 Jun 2021 21:06:34 +0200
parents 95ffe3b6ef7c
children 7826ac059c31
line wrap: on
line diff
--- a/OrthancFramework/Sources/Enumerations.cpp	Thu Jun 03 19:44:43 2021 +0200
+++ b/OrthancFramework/Sources/Enumerations.cpp	Thu Jun 03 21:06:34 2021 +0200
@@ -874,6 +874,10 @@
         return "2017c";
         break;
 
+      case DicomVersion_2021b:
+        return "2021b";
+        break;
+
       default: 
         throw OrthancException(ErrorCode_ParameterOutOfRange);
     }
@@ -1581,6 +1585,10 @@
     {
       return DicomVersion_2017c;
     }
+    else if (version == "2021b")
+    {
+      return DicomVersion_2021b;
+    }
     else
     {
       throw OrthancException(ErrorCode_ParameterOutOfRange,