comparison OrthancFramework/Sources/JobsEngine/SetOfCommandsJob.h @ 5310:b5c502bcaf99

added a route to DELETE /jobs/../archive
author Alain Mazy <am@osimis.io>
date Mon, 12 Jun 2023 18:42:06 +0200
parents 0ea402b4d901
children 48b8dae6dc77
comparison
equal deleted inserted replaced
5309:fb231da5c0f1 5310:b5c502bcaf99
104 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE; 104 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE;
105 105
106 virtual bool GetOutput(std::string& output, 106 virtual bool GetOutput(std::string& output,
107 MimeType& mime, 107 MimeType& mime,
108 std::string& filename, 108 std::string& filename,
109 const std::string& key) ORTHANC_OVERRIDE; 109 const std::string& key) ORTHANC_OVERRIDE
110 {
111 return false;
112 }
113
114 virtual bool DeleteOutput(const std::string& key) ORTHANC_OVERRIDE
115 {
116 return false;
117 }
110 }; 118 };
111 } 119 }