comparison OrthancServer/Search/IFindConstraint.h @ 1750:55d52567bebb db-changes

LookupResource implemented
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 27 Oct 2015 12:45:50 +0100
parents 99f4a05f39fa
children 03b030680e3d
comparison
equal deleted inserted replaced
1749:99f4a05f39fa 1750:55d52567bebb
53 const DicomTag& GetTag() const 53 const DicomTag& GetTag() const
54 { 54 {
55 return tag_; 55 return tag_;
56 } 56 }
57 57
58 virtual IFindConstraint* Clone() const = 0;
59
58 virtual void Setup(LookupIdentifierQuery& lookup) const = 0; 60 virtual void Setup(LookupIdentifierQuery& lookup) const = 0;
59 61
60 virtual bool Match(const std::string& value) const = 0; 62 virtual bool Match(const std::string& value) const = 0;
61 }; 63 };
62 } 64 }