diff OrthancServer/DatabaseWrapper.h @ 1252:ee43f0d611a8

testing
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 Jan 2015 17:41:41 +0100
parents 32fcc5dc7562
children b4acdb37e43b
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapper.h	Tue Jan 06 14:25:44 2015 +0100
+++ b/OrthancServer/DatabaseWrapper.h	Wed Jan 07 17:41:41 2015 +0100
@@ -213,13 +213,13 @@
       return db_.GetErrorMessage();
     }
 
-    void GetChildren(std::list<std::string>& childrenPublicIds,
-                     int64_t id);
+    virtual void GetChildren(std::list<std::string>& childrenPublicIds,
+                             int64_t id);
 
-    int64_t GetTableRecordCount(const std::string& table);
+    virtual int64_t GetTableRecordCount(const std::string& table);
     
-    bool GetParentPublicId(std::string& result,
-                           int64_t id);
+    virtual bool GetParentPublicId(std::string& result,
+                                   int64_t id);
 
   };
 }