comparison OrthancServer/Search/ListConstraint.h @ 3036:8fd203510d8b db-changes

moving LookupIdentifierQuery to the graveyard
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 19 Dec 2018 16:27:07 +0100
parents 878b59270859
children ce272138f15e
comparison
equal deleted inserted replaced
3034:54e422fe31ce 3036:8fd203510d8b
62 virtual IFindConstraint* Clone() const 62 virtual IFindConstraint* Clone() const
63 { 63 {
64 return new ListConstraint(*this); 64 return new ListConstraint(*this);
65 } 65 }
66 66
67 virtual void Setup(LookupIdentifierQuery& lookup,
68 const DicomTag& tag) const;
69
70 virtual bool Match(const std::string& value) const; 67 virtual bool Match(const std::string& value) const;
71 68
72 virtual std::string Format() const; 69 virtual std::string Format() const;
73 }; 70 };
74 } 71 }