comparison OrthancServer/Search/RangeConstraint.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
62 62
63 virtual void Setup(LookupIdentifierQuery& lookup, 63 virtual void Setup(LookupIdentifierQuery& lookup,
64 const DicomTag& tag) const; 64 const DicomTag& tag) const;
65 65
66 virtual bool Match(const std::string& value) const; 66 virtual bool Match(const std::string& value) const;
67
68 virtual std::string Format() const
69 {
70 return lower_ + "-" + upper_;
71 }
67 }; 72 };
68 } 73 }