comparison 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
comparison
equal deleted inserted replaced
1750:55d52567bebb 1751:fb569ee09a69
41 { 41 {
42 boost::regex pattern_; 42 boost::regex pattern_;
43 std::string wildcard_; 43 std::string wildcard_;
44 }; 44 };
45 45
46
47 WildcardConstraint::WildcardConstraint(const WildcardConstraint& other) :
48 IFindConstraint(other.GetTag()),
49 pimpl_(new PImpl(*other.pimpl_))
50 {
51 }
52
53
46 WildcardConstraint::WildcardConstraint(const DicomTag& tag, 54 WildcardConstraint::WildcardConstraint(const DicomTag& tag,
47 const std::string& wildcard, 55 const std::string& wildcard,
48 bool isCaseSensitive) : 56 bool isCaseSensitive) :
49 IFindConstraint(tag), 57 IFindConstraint(tag),
50 pimpl_(new PImpl) 58 pimpl_(new PImpl)