Mercurial > hg > orthanc-stone
annotate Platforms/Generic/WebServiceGetCommand.h @ 182:2cbfb08f3a95 wasm
ImageGeometry.cpp
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 15 Mar 2018 12:12:01 +0100 |
parents | e2fe9352f240 |
children | e9c7a78a3e77 |
rev | line source |
---|---|
80 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
135
e2fe9352f240
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
113
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
80 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #include "IOracleCommand.h" | |
25 | |
26 #include "../../Framework/Toolbox/IWebService.h" | |
113
2eca030792aa
using the Orthanc Framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
80
diff
changeset
|
27 |
2eca030792aa
using the Orthanc Framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
80
diff
changeset
|
28 #include <Core/WebServiceParameters.h> |
80 | 29 |
30 #include <memory> | |
31 | |
32 namespace OrthancStone | |
33 { | |
34 class WebServiceGetCommand : public IOracleCommand | |
35 { | |
36 private: | |
37 IWebService::ICallback& callback_; | |
38 Orthanc::WebServiceParameters parameters_; | |
39 std::string uri_; | |
40 std::auto_ptr<Orthanc::IDynamicObject> payload_; | |
41 bool success_; | |
42 std::string answer_; | |
43 | |
44 public: | |
45 WebServiceGetCommand(IWebService::ICallback& callback, | |
46 const Orthanc::WebServiceParameters& parameters, | |
47 const std::string& uri, | |
48 Orthanc::IDynamicObject* payload /* takes ownership */); | |
49 | |
50 virtual void Execute(); | |
51 | |
52 virtual void Commit(); | |
53 }; | |
54 } |