comparison OrthancServer/ServerIndex.h @ 681:3bdb5db8e839 query-retrieve

generalization of query/retrieve
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 24 Jan 2014 17:40:45 +0100
parents fb49bf72ac2d
children 67e6400fca03
comparison
equal deleted inserted replaced
679:28e4b3ec8aff 681:3bdb5db8e839
211 DicomTag tag, 211 DicomTag tag,
212 const std::string& value); 212 const std::string& value);
213 213
214 void LookupTagValue(std::list<std::string>& result, 214 void LookupTagValue(std::list<std::string>& result,
215 const std::string& value); 215 const std::string& value);
216
217
218 // TODO IS IT USEFUL???
219 void LookupTagValue(std::set<std::string>& result,
220 DicomTag tag,
221 const std::string& value,
222 ResourceType type);
223
224 // TODO IS IT USEFUL???
225 void LookupTagValue(std::set<std::string>& result,
226 DicomTag tag,
227 const std::string& value);
228
229 // TODO IS IT USEFUL???
230 void LookupTagValue(std::set<std::string>& result,
231 const std::string& value);
216 }; 232 };
217 } 233 }