Mercurial > hg > orthanc-stone
annotate Framework/Volumes/StructureSetLoader.h @ 627:b7fd0471281c am-dev
fix CodeGeneration unit tests
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Wed, 08 May 2019 10:51:41 +0200 |
parents | b70e9be013e4 |
children | 4f2416d519b4 |
rev | line source |
---|---|
130 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
439 | 5 * Copyright (C) 2017-2019 Osimis S.A., Belgium |
130 | 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 "../Toolbox/DicomStructureSet.h" | |
300
b4abaeb783b1
messaging refactoring almost complete: works fine in native
am@osimis.io
parents:
251
diff
changeset
|
25 #include "../Toolbox/OrthancApiClient.h" |
404
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
26 #include "IVolumeLoader.h" |
130 | 27 |
28 namespace OrthancStone | |
29 { | |
30 class StructureSetLoader : | |
404
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
31 public IVolumeLoader, |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
32 public IObserver |
130 | 33 { |
34 private: | |
404
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
35 OrthancApiClient& orthanc_; |
130 | 36 std::auto_ptr<DicomStructureSet> structureSet_; |
37 | |
404
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
38 void OnReferencedSliceLoaded(const OrthancApiClient::JsonResponseReadyMessage& message); |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
39 |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
40 void OnStructureSetLoaded(const OrthancApiClient::JsonResponseReadyMessage& message); |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
41 |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
42 void OnLookupCompleted(const OrthancApiClient::JsonResponseReadyMessage& message); |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
43 |
130 | 44 public: |
404
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
45 StructureSetLoader(MessageBroker& broker, |
ba4ace20454e
use of MessageBroker in DicomStructureSetSlicer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
300
diff
changeset
|
46 OrthancApiClient& orthanc); |
130 | 47 |
48 void ScheduleLoadInstance(const std::string& instance); | |
49 | |
50 bool HasStructureSet() const | |
51 { | |
52 return structureSet_.get() != NULL; | |
53 } | |
54 | |
55 DicomStructureSet& GetStructureSet(); | |
56 }; | |
57 } |