diff OrthancServer/ServerIndex.h @ 681:3bdb5db8e839 query-retrieve

generalization of query/retrieve
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 24 Jan 2014 17:40:45 +0100
parents fb49bf72ac2d
children 67e6400fca03
line wrap: on
line diff
--- a/OrthancServer/ServerIndex.h	Fri Jan 24 15:35:39 2014 +0100
+++ b/OrthancServer/ServerIndex.h	Fri Jan 24 17:40:45 2014 +0100
@@ -213,5 +213,21 @@
 
     void LookupTagValue(std::list<std::string>& result,
                         const std::string& value);
+
+
+    // TODO IS IT USEFUL???
+    void LookupTagValue(std::set<std::string>& result,
+                        DicomTag tag,
+                        const std::string& value,
+                        ResourceType type);
+
+    // TODO IS IT USEFUL???
+    void LookupTagValue(std::set<std::string>& result,
+                        DicomTag tag,
+                        const std::string& value);
+
+    // TODO IS IT USEFUL???
+    void LookupTagValue(std::set<std::string>& result,
+                        const std::string& value);
   };
 }