diff Framework/Enumerations.h @ 117:42c05a3baee3 wasm

loading multi-frame instances as 3D volumes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 28 Sep 2017 16:55:51 +0200
parents 5945e81734a3
children e2fe9352f240
line wrap: on
line diff
--- a/Framework/Enumerations.h	Mon Sep 25 13:43:47 2017 +0200
+++ b/Framework/Enumerations.h	Thu Sep 28 16:55:51 2017 +0200
@@ -21,6 +21,8 @@
 
 #pragma once
 
+#include <string>
+
 namespace OrthancStone
 {
   enum SliceOffsetMode
@@ -79,4 +81,12 @@
     SliceImageQuality_Jpeg90,
     SliceImageQuality_Jpeg95
   };
+
+  enum SopClassUid
+  {
+    SopClassUid_RTDose
+  };
+
+  bool StringToSopClassUid(SopClassUid& result,
+                           const std::string& source);
 }