diff OrthancServer/DatabaseWrapper.h @ 1713:4db9200c7f46 db-changes

SetIdentifierTag
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Oct 2015 18:17:22 +0200
parents 5ebd6cbb3da8
children 2b812969e136
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapper.h	Fri Oct 16 17:36:59 2015 +0200
+++ b/OrthancServer/DatabaseWrapper.h	Fri Oct 16 18:17:22 2015 +0200
@@ -178,6 +178,13 @@
       base_.SetMainDicomTag(id, tag, value);
     }
 
+    virtual void SetIdentifierTag(int64_t id,
+                                 const DicomTag& tag,
+                                 const std::string& value)
+    {
+      base_.SetIdentifierTag(id, tag, value);
+    }
+
     virtual void GetMainDicomTags(DicomMap& map,
                                   int64_t id)
     {