diff OrthancServer/DatabaseWrapper.h @ 1750:55d52567bebb db-changes

LookupResource implemented
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 27 Oct 2015 12:45:50 +0100
parents d143db00a794
children b1291df2f780
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapper.h	Tue Oct 27 10:54:51 2015 +0100
+++ b/OrthancServer/DatabaseWrapper.h	Tue Oct 27 12:45:50 2015 +0100
@@ -249,6 +249,12 @@
       return base_.GetResourceCount(resourceType);
     }
 
+    virtual void GetAllInternalIds(std::list<int64_t>& target,
+                                   ResourceType resourceType)
+    {
+      base_.GetAllInternalIds(target, resourceType);
+    }
+
     virtual void GetAllPublicIds(std::list<std::string>& target,
                                  ResourceType resourceType)
     {