comparison OrthancServer/IDatabaseWrapper.h @ 3027:fd587cf51a89 db-changes

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Dec 2018 12:50:27 +0100
parents 039a9d262d64
children ea653ec47f31
comparison
equal deleted inserted replaced
3025:039a9d262d64 3027:fd587cf51a89
224 virtual void Upgrade(unsigned int targetVersion, 224 virtual void Upgrade(unsigned int targetVersion,
225 IStorageArea& storageArea) = 0; 225 IStorageArea& storageArea) = 0;
226 226
227 virtual bool IsDiskSizeAbove(uint64_t threshold) = 0; 227 virtual bool IsDiskSizeAbove(uint64_t threshold) = 0;
228 228
229 virtual void FindOneChildInstance(std::vector<std::string>& instancesId,
230 const std::vector<std::string>& resourcesId,
231 ResourceType level) = 0;
232
233 virtual void ApplyLookupPatients(std::vector<std::string>& patientsId, 229 virtual void ApplyLookupPatients(std::vector<std::string>& patientsId,
230 std::vector<std::string>& instancesId,
234 const DatabaseLookup& lookup, 231 const DatabaseLookup& lookup,
235 size_t limit) = 0; 232 size_t limit) = 0;
236 233
237 virtual void ApplyLookupResources(std::vector<std::string>& resourcesId, 234 virtual void ApplyLookupResources(std::vector<std::string>& resourcesId,
235 std::vector<std::string>& instancesId,
238 const DatabaseLookup& lookup, 236 const DatabaseLookup& lookup,
239 ResourceType queryLevel, 237 ResourceType queryLevel,
240 size_t limit) = 0; 238 size_t limit) = 0;
241 }; 239 };
242 } 240 }