Mercurial > hg > orthanc-stone
comparison Framework/Loaders/DicomSource.h @ 1473:9cbc6d21ae89
SeriesThumbnailsLoader::SuccessMessage::DecodeImage(), fix static builds
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 15 Jun 2020 18:02:49 +0200 |
parents | 30deba7bc8e2 |
children |
comparison
equal
deleted
inserted
replaced
1472:474360793956 | 1473:9cbc6d21ae89 |
---|---|
96 IOracleCommand* CreateDicomWebCommand(const std::string& uri, | 96 IOracleCommand* CreateDicomWebCommand(const std::string& uri, |
97 const std::map<std::string, std::string>& arguments, | 97 const std::map<std::string, std::string>& arguments, |
98 const std::map<std::string, std::string>& headers, | 98 const std::map<std::string, std::string>& headers, |
99 Orthanc::IDynamicObject* payload /* takes ownership */) const; | 99 Orthanc::IDynamicObject* payload /* takes ownership */) const; |
100 | 100 |
101 IOracleCommand* CreateDicomWebCommand(const std::string& uri, | |
102 Orthanc::IDynamicObject* payload /* takes ownership */) const | |
103 { | |
104 std::map<std::string, std::string> none; | |
105 return CreateDicomWebCommand(uri, none, none, payload); | |
106 } | |
107 | |
101 void AutodetectOrthancFeatures(const std::string& system, | 108 void AutodetectOrthancFeatures(const std::string& system, |
102 const std::string& plugins); | 109 const std::string& plugins); |
103 | 110 |
104 void SetOrthancWebViewer1(bool hasPlugin); | 111 void SetOrthancWebViewer1(bool hasPlugin); |
105 | 112 |