comparison OrthancServer/DatabaseWrapperBase.h @ 1746:d143db00a794 db-changes

SetOfResources
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Oct 2015 16:04:58 +0100
parents 38dda23c7d7d
children ca69082ab200
comparison
equal deleted inserted replaced
1745:38dda23c7d7d 1746:d143db00a794
189 void SetProtectedPatient(int64_t internalId, 189 void SetProtectedPatient(int64_t internalId,
190 bool isProtected); 190 bool isProtected);
191 191
192 bool IsExistingResource(int64_t internalId); 192 bool IsExistingResource(int64_t internalId);
193 193
194 void LookupIdentifierExact(std::list<int64_t>& target, 194 void LookupIdentifier(std::list<int64_t>& result,
195 ResourceType level, 195 ResourceType level,
196 const DicomTag& tag, 196 const DicomTag& tag,
197 const std::string& value); 197 IdentifierConstraintType type,
198 198 const std::string& value);
199 void LookupIdentifier(const LookupIdentifierQuery& query);
200 }; 199 };
201 } 200 }
202 201