diff OrthancServer/Search/WildcardConstraint.cpp @ 1751:fb569ee09a69 db-changes

LookupResource complete
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 27 Oct 2015 16:05:42 +0100
parents 99f4a05f39fa
children 03b030680e3d
line wrap: on
line diff
--- a/OrthancServer/Search/WildcardConstraint.cpp	Tue Oct 27 12:45:50 2015 +0100
+++ b/OrthancServer/Search/WildcardConstraint.cpp	Tue Oct 27 16:05:42 2015 +0100
@@ -43,6 +43,14 @@
     std::string   wildcard_;
   };
 
+
+  WildcardConstraint::WildcardConstraint(const WildcardConstraint& other) :
+    IFindConstraint(other.GetTag()),
+    pimpl_(new PImpl(*other.pimpl_))
+  {
+  }
+
+
   WildcardConstraint::WildcardConstraint(const DicomTag& tag, 
                                          const std::string& wildcard,
                                          bool isCaseSensitive) :