Mercurial > hg > orthanc
diff OrthancServer/IDatabaseWrapper.h @ 1301:5d56cfa49f68
rename
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 09 Feb 2015 15:31:29 +0100 |
parents | 910478b2d4e4 |
children | 5fe254fb1c93 |
line wrap: on
line diff
--- a/OrthancServer/IDatabaseWrapper.h Fri Feb 06 15:30:46 2015 +0100 +++ b/OrthancServer/IDatabaseWrapper.h Mon Feb 09 15:31:29 2015 +0100 @@ -73,7 +73,7 @@ virtual void FlushToDisk() = 0; - virtual void GetAllMetadata(std::map<MetadataType, std::string>& result, + virtual void GetAllMetadata(std::map<MetadataType, std::string>& target, int64_t id) = 0; virtual void GetAllPublicIds(std::list<std::string>& target, @@ -85,10 +85,10 @@ int64_t since, unsigned int maxResults) = 0; - virtual void GetChildrenInternalId(std::list<int64_t>& result, + virtual void GetChildrenInternalId(std::list<int64_t>& target, int64_t id) = 0; - virtual void GetChildrenPublicId(std::list<std::string>& result, + virtual void GetChildrenPublicId(std::list<std::string>& target, int64_t id) = 0; virtual void GetExportedResources(std::list<ExportedResource>& target /*out*/, @@ -120,7 +120,7 @@ virtual void ListAvailableMetadata(std::list<MetadataType>& target, int64_t id) = 0; - virtual void ListAvailableAttachments(std::list<FileContentType>& result, + virtual void ListAvailableAttachments(std::list<FileContentType>& target, int64_t id) = 0; virtual void LogChange(int64_t internalId, @@ -135,11 +135,11 @@ virtual bool LookupGlobalProperty(std::string& target, GlobalProperty property) = 0; - virtual void LookupIdentifier(std::list<int64_t>& result, + virtual void LookupIdentifier(std::list<int64_t>& target, const DicomTag& tag, const std::string& value) = 0; - virtual void LookupIdentifier(std::list<int64_t>& result, + virtual void LookupIdentifier(std::list<int64_t>& target, const std::string& value) = 0; virtual bool LookupMetadata(std::string& target,