Пример #1
0
 IStoreRequestHandlerFactory& DicomServer::GetStoreRequestHandlerFactory() const
 {
   if (HasStoreRequestHandlerFactory())
   {
     return *storeRequestHandlerFactory_;
   }
   else
   {
     throw OrthancException(ErrorCode_NoCStoreHandler);
   }
 }
Пример #2
0
 IStoreRequestHandlerFactory& DicomServer::GetStoreRequestHandlerFactory() const
 {
   if (HasStoreRequestHandlerFactory())
   {
     return *storeRequestHandlerFactory_;
   }
   else
   {
     throw OrthancException("No C-STORE request handler factory");
   }
 }