Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Toolbox/OrthancDatasets/SimplifiedOrthancDataset.h @ 1770:073484e33bee
fix offset of textures
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 May 2021 10:53:37 +0200 |
parents | 9ac2a65d4172 |
children | 126522623e20 |
rev | line source |
---|---|
1504 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1598
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
1504 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
1504 | 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 | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1571
diff
changeset
|
16 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
1504 | 20 **/ |
21 | |
22 | |
23 #pragma once | |
24 | |
1571 | 25 #if !defined(ORTHANC_ENABLE_DCMTK) |
26 # error The macro ORTHANC_ENABLE_DCMTK must be defined | |
27 #endif | |
28 | |
29 #if ORTHANC_ENABLE_DCMTK != 1 | |
30 # error Support for DCMTK must be enabled to use SimplifiedOrthancDataset | |
31 #endif | |
32 | |
1504 | 33 #include "IOrthancConnection.h" |
34 #include "IDicomDataset.h" | |
35 | |
1571 | 36 #include <Compatibility.h> // For ORTHANC_OVERRIDE |
37 | |
1504 | 38 namespace OrthancStone |
39 { | |
40 class SimplifiedOrthancDataset : public IDicomDataset | |
41 { | |
42 private: | |
43 Json::Value root_; | |
44 | |
45 const Json::Value* LookupPath(const DicomPath& path) const; | |
46 | |
47 void CheckRoot() const; | |
48 | |
49 public: | |
50 SimplifiedOrthancDataset(IOrthancConnection& orthanc, | |
51 const std::string& uri); | |
52 | |
1571 | 53 explicit SimplifiedOrthancDataset(const std::string& content); |
1504 | 54 |
55 virtual bool GetStringValue(std::string& result, | |
1571 | 56 const DicomPath& path) const ORTHANC_OVERRIDE; |
1504 | 57 |
58 virtual bool GetSequenceSize(size_t& size, | |
1571 | 59 const DicomPath& path) const ORTHANC_OVERRIDE; |
1504 | 60 }; |
61 } |