diff OrthancServer/DatabaseWrapper.h @ 1728:4941494b5dd8 db-changes

rename LookupIdentifier as LookupIdentifierExact
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Oct 2015 15:03:52 +0200
parents 1ae29c5e52fb
children 54d78925cbb6
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapper.h	Tue Oct 20 14:50:10 2015 +0200
+++ b/OrthancServer/DatabaseWrapper.h	Tue Oct 20 15:03:52 2015 +0200
@@ -315,12 +315,12 @@
       return base_.IsExistingResource(internalId);
     }
 
-    virtual void LookupIdentifier(std::list<int64_t>& target,
-                                  ResourceType level,
-                                  const DicomTag& tag,
-                                  const std::string& value)
+    virtual void LookupIdentifierExact(std::list<int64_t>& target,
+                                       ResourceType level,
+                                       const DicomTag& tag,
+                                       const std::string& value)
     {
-      base_.LookupIdentifier(target, level, tag, value);
+      base_.LookupIdentifierExact(target, level, tag, value);
     }
 
     virtual void GetAllMetadata(std::map<MetadataType, std::string>& target,