comparison OrthancServer/ServerContext.cpp @ 3660:f159b731c47d storage-commitment

IStorageCommitmentFactory
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Feb 2020 17:39:53 +0100
parents 94f4a18a79cc
children d8371b4302ff
comparison
equal deleted inserted replaced
3659:08eb0f93c491 3660:f159b731c47d
1050 { 1050 {
1051 GetPlugins().SignalUpdatedPeers(); 1051 GetPlugins().SignalUpdatedPeers();
1052 } 1052 }
1053 #endif 1053 #endif
1054 } 1054 }
1055
1056
1057 IStorageCommitmentFactory::ILookupHandler*
1058 ServerContext::CreateStorageCommitment(const std::string& jobId,
1059 const std::string& transactionUid,
1060 const std::vector<std::string>& sopClassUids,
1061 const std::vector<std::string>& sopInstanceUids)
1062 {
1063 #if ORTHANC_ENABLE_PLUGINS == 1
1064 if (HasPlugins())
1065 {
1066 // TODO
1067 return NULL;
1068 }
1069 #endif
1070
1071 return NULL;
1072 }
1055 } 1073 }