comparison OrthancServer/Search/ValueConstraint.h @ 1795:af6840eb23ee worklists

HierarchicalMatcher
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 19 Nov 2015 17:41:22 +0100
parents 03b030680e3d
children b1291df2f780
comparison
equal deleted inserted replaced
1794:bdfae6e17d23 1795:af6840eb23ee
59 59
60 virtual void Setup(LookupIdentifierQuery& lookup, 60 virtual void Setup(LookupIdentifierQuery& lookup,
61 const DicomTag& tag) const; 61 const DicomTag& tag) const;
62 62
63 virtual bool Match(const std::string& value) const; 63 virtual bool Match(const std::string& value) const;
64
65 virtual std::string Format() const
66 {
67 return value_;
68 }
64 }; 69 };
65 } 70 }