Mercurial > hg > orthanc-stone
annotate Applications/Resources/Graveyard/Messaging/CurlOrthancConnection.h @ 2177:4d21befb1501 default tip
clarify DICOMweb version check
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 23 Oct 2024 19:27:56 +0200 |
parents | 16c01cc201e7 |
children |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
2124
16c01cc201e7
updated copyright, as Osimis is not active on Orthanc anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2114
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
2114
c23eef785569
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2077
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
47 | 9 * modify it under the terms of the GNU Affero General Public License |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
0 | 12 * |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
47 | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 * Affero General Public License for more details. | |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1586
diff
changeset
|
17 * |
47 | 18 * You should have received a copy of the GNU Affero General Public License |
0 | 19 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include "IOrthancConnection.h" | |
26 | |
27 #if ORTHANC_ENABLE_CURL == 1 | |
28 | |
16 | 29 #include "../../Resources/Orthanc/Core/WebServiceParameters.h" |
0 | 30 |
31 namespace OrthancStone | |
32 { | |
33 class CurlOrthancConnection : public IOrthancConnection | |
34 { | |
35 private: | |
36 Orthanc::WebServiceParameters parameters_; | |
37 | |
38 public: | |
39 CurlOrthancConnection(const Orthanc::WebServiceParameters& parameters) : | |
40 parameters_(parameters) | |
41 { | |
42 } | |
43 | |
44 const Orthanc::WebServiceParameters& GetParameters() const | |
45 { | |
46 return parameters_; | |
47 } | |
48 | |
49 virtual void RestApiGet(std::string& result, | |
50 const std::string& uri); | |
51 | |
52 virtual void RestApiPost(std::string& result, | |
53 const std::string& uri, | |
54 const std::string& body); | |
55 }; | |
56 } | |
57 | |
58 #endif |