comparison Framework/Radiography/RadiographyLayer.h @ 918:d6c029d15aaa

Merged am-dev into default
author Alain Mazy <am@osimis.io>
date Fri, 19 Jul 2019 15:15:13 +0200
parents 580dd82e13f5
children b537002f83a9 35e798b16b65
comparison
equal deleted inserted replaced
914:4d1f57773b5b 918:d6c029d15aaa
353 353
354 virtual bool GetRange(float& minValue, 354 virtual bool GetRange(float& minValue,
355 float& maxValue) const = 0; 355 float& maxValue) const = 0;
356 356
357 friend class RadiographyMaskLayer; // because it needs to GetTransform on the dicomLayer it relates to 357 friend class RadiographyMaskLayer; // because it needs to GetTransform on the dicomLayer it relates to
358
359 virtual size_t GetApproximateMemoryUsage() const // this is used to limit the number of scenes loaded in RAM when resources are limited (we actually only count the size used by the images, not the C structs)
360 {
361 return 0;
362 }
358 }; 363 };
359 } 364 }