Mercurial > hg > orthanc-stone
annotate Framework/Volumes/SlicedVolumeBase.cpp @ 180:4da803580da9 wasm
remove macro ORTHANC_STONE_FORCE_INLINE
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 13 Mar 2018 20:02:39 +0100 |
parents | a06ad9d7406e |
children | 885e1ebd315c |
rev | line source |
---|---|
88 | 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:
90
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
88 | 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 #include "SlicedVolumeBase.h" | |
23 | |
24 namespace OrthancStone | |
25 { | |
26 void SlicedVolumeBase::NotifyGeometryReady() | |
27 { | |
90
64e60018943f
fix and observer refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
88
diff
changeset
|
28 observers_.Apply(*this, &IObserver::NotifyGeometryReady); |
88 | 29 } |
30 | |
31 void SlicedVolumeBase::NotifyGeometryError() | |
32 { | |
90
64e60018943f
fix and observer refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
88
diff
changeset
|
33 observers_.Apply(*this, &IObserver::NotifyGeometryError); |
88 | 34 } |
35 | |
36 void SlicedVolumeBase::NotifyContentChange() | |
37 { | |
90
64e60018943f
fix and observer refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
88
diff
changeset
|
38 observers_.Apply(*this, &IObserver::NotifyContentChange); |
88 | 39 } |
40 | |
90
64e60018943f
fix and observer refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
88
diff
changeset
|
41 void SlicedVolumeBase::NotifySliceChange(const size_t& sliceIndex, |
88 | 42 const Slice& slice) |
43 { | |
90
64e60018943f
fix and observer refactoring
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
88
diff
changeset
|
44 observers_.Apply(*this, &IObserver::NotifySliceChange, sliceIndex, slice); |
88 | 45 } |
136
a06ad9d7406e
ISlicedVolume::NotifyVolumeReady
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
46 |
a06ad9d7406e
ISlicedVolume::NotifyVolumeReady
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
47 void SlicedVolumeBase::NotifyVolumeReady() |
a06ad9d7406e
ISlicedVolume::NotifyVolumeReady
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
48 { |
a06ad9d7406e
ISlicedVolume::NotifyVolumeReady
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
49 observers_.Apply(*this, &IObserver::NotifyVolumeReady); |
a06ad9d7406e
ISlicedVolume::NotifyVolumeReady
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
135
diff
changeset
|
50 } |
88 | 51 } |