comparison Framework/Deprecated/Loaders/OrthancSeriesVolumeProgressiveLoader.h @ 1318:cbfdba08e039 broker

removed SDL code in wasm + added undostack CTOR in Wasm viewport + build fix + ORTHANC_OVERRIDE
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 17 Mar 2020 08:40:13 +0100
parents 9b126de2cde2
children 7702ad9b7011
comparison
equal deleted inserted replaced
1317:8981bfca3457 1318:cbfdba08e039
149 /** 149 /**
150 This getter is used by clients that do not receive the geometry through 150 This getter is used by clients that do not receive the geometry through
151 subscribing, for instance if they are created or listening only AFTER the 151 subscribing, for instance if they are created or listening only AFTER the
152 "geometry loaded" message is broadcast 152 "geometry loaded" message is broadcast
153 */ 153 */
154 bool HasGeometry() const 154 bool HasGeometry() const ORTHANC_OVERRIDE
155 { 155 {
156 return seriesGeometry_.HasGeometry(); 156 return seriesGeometry_.HasGeometry();
157 } 157 }
158 158
159 /** 159 /**
160 Same remark as HasGeometry 160 Same remark as HasGeometry
161 */ 161 */
162 const OrthancStone::VolumeImageGeometry& GetImageGeometry() const 162 const OrthancStone::VolumeImageGeometry& GetImageGeometry() const ORTHANC_OVERRIDE
163 { 163 {
164 return seriesGeometry_.GetImageGeometry(); 164 return seriesGeometry_.GetImageGeometry();
165 } 165 }
166 166
167 /** 167 /**