diff OrthancServer/DatabaseWrapperBase.h @ 1711:5ebd6cbb3da8 db-changes

Backed out changeset 2ad22b2970a2
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Oct 2015 17:36:07 +0200
parents 2ad22b2970a2
children 4db9200c7f46
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapperBase.h	Tue Oct 13 17:48:30 2015 +0200
+++ b/OrthancServer/DatabaseWrapperBase.h	Fri Oct 16 17:36:07 2015 +0200
@@ -42,7 +42,6 @@
 #include "ServerEnumerations.h"
 
 #include <list>
-#include <boost/noncopyable.hpp>
 
 
 namespace Orthanc
@@ -52,7 +51,7 @@
    * database plugin whose code is in
    * "../Plugins/Samples/DatabasePlugin".
    **/
-  class DatabaseWrapperBase : public boost::noncopyable
+  class DatabaseWrapperBase
   {
   private:
     SQLite::Connection&  db_;
@@ -193,9 +192,6 @@
 
     void LookupIdentifier(std::list<int64_t>& target,
                           const std::string& value);
-
-    void StoreStudyModule(int64_t id,
-                          const DicomMap& module);
   };
 }