comparison OrthancServer/Sources/ResourceFinder.h @ 5825:881cd0965146 find-refactoring tip

added OrderBy support in SQLite
author Alain Mazy <am@orthanc.team>
date Fri, 04 Oct 2024 19:03:14 +0200
parents 40ad08b75d84
children
comparison
equal deleted inserted replaced
5819:7c2b4fa94633 5825:881cd0965146
131 131
132 void AddRequestedTag(const DicomTag& tag); 132 void AddRequestedTag(const DicomTag& tag);
133 133
134 void AddRequestedTags(const std::set<DicomTag>& tags); 134 void AddRequestedTags(const std::set<DicomTag>& tags);
135 135
136 void AddOrdering(const DicomTag& tag,
137 FindRequest::OrderingDirection direction)
138 {
139 request_.AddOrdering(tag, direction);
140 }
141
142 void AddOrdering(MetadataType metadataType,
143 FindRequest::OrderingDirection direction)
144 {
145 request_.AddOrdering(metadataType, direction);
146 }
147
148
136 void SetLabels(const std::set<std::string>& labels) 149 void SetLabels(const std::set<std::string>& labels)
137 { 150 {
138 request_.SetLabels(labels); 151 request_.SetLabels(labels);
139 } 152 }
140 153