comparison OrthancServer/Sources/Database/FindRequest.h @ 5682:fd4c5e064cbe find-refactoring

started refactoring of ServerContext::Apply()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Jul 2024 11:17:34 +0200
parents 77875b51cf95
children 7c11a71927a9
comparison
equal deleted inserted replaced
5681:77875b51cf95 5682:fd4c5e064cbe
333 const std::deque<Ordering*>& GetOrdering() const 333 const std::deque<Ordering*>& GetOrdering() const
334 { 334 {
335 return ordering_; 335 return ordering_;
336 } 336 }
337 337
338 void SetLabels(const std::set<std::string>& labels)
339 {
340 labels_ = labels;
341 }
342
338 void AddLabel(const std::string& label) 343 void AddLabel(const std::string& label)
339 { 344 {
340 labels_.insert(label); 345 labels_.insert(label);
341 } 346 }
342 347