comparison OrthancServer/Sources/Database/FindResponse.h @ 5587:0f5586c498d1 find-refactoring

removed FindRequest::FilterConstraint as it was mostly redundant with DicomTagConstraint
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 03 May 2024 17:06:42 +0200
parents fc3914c07dd3
children 1b0fc6685f57
comparison
equal deleted inserted replaced
5586:fc3914c07dd3 5587:0f5586c498d1
107 level_(level), 107 level_(level),
108 identifier_(identifier) 108 identifier_(identifier)
109 { 109 {
110 } 110 }
111 111
112 ResourceType GetLevel() const
113 {
114 return level_;
115 }
116
117 const std::string& GetIdentifier() const 112 const std::string& GetIdentifier() const
118 { 113 {
119 return identifier_; 114 return identifier_;
120 } 115 }
121 116