Mercurial > hg > orthanc-stone
changeset 1227:a1c0c9c9f9af broker
deprecating SliceImageQuality enum
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 08 Dec 2019 12:06:44 +0100 |
parents | 05d05cba0f4f |
children | c471a0aa137b |
files | Framework/Deprecated/Toolbox/OrthancApiClient.h Framework/StoneEnumerations.h |
diffstat | 2 files changed, 11 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/Framework/Deprecated/Toolbox/OrthancApiClient.h Sun Dec 08 11:57:46 2019 +0100 +++ b/Framework/Deprecated/Toolbox/OrthancApiClient.h Sun Dec 08 12:06:44 2019 +0100 @@ -29,6 +29,17 @@ namespace Deprecated { + enum SliceImageQuality + { + SliceImageQuality_FullPng, // smaller to transmit but longer to generate on Orthanc side (better choice when on low bandwidth) + SliceImageQuality_FullPam, // bigger to transmit but faster to generate on Orthanc side (better choice when on localhost or LAN) + SliceImageQuality_Jpeg50, + SliceImageQuality_Jpeg90, + SliceImageQuality_Jpeg95, + + SliceImageQuality_InternalRaw // downloads the raw pixels data as they are stored in the DICOM file (internal use only) + }; + class OrthancApiClient : public OrthancStone::IObservable, public OrthancStone::ObserverBase<OrthancApiClient>
--- a/Framework/StoneEnumerations.h Sun Dec 08 11:57:46 2019 +0100 +++ b/Framework/StoneEnumerations.h Sun Dec 08 12:06:44 2019 +0100 @@ -24,21 +24,6 @@ #include <string> -namespace Deprecated -{ - enum SliceImageQuality - { - SliceImageQuality_FullPng, // smaller to transmit but longer to generate on Orthanc side (better choice when on low bandwidth) - SliceImageQuality_FullPam, // bigger to transmit but faster to generate on Orthanc side (better choice when on localhost or LAN) - SliceImageQuality_Jpeg50, - SliceImageQuality_Jpeg90, - SliceImageQuality_Jpeg95, - - SliceImageQuality_InternalRaw // downloads the raw pixels data as they are stored in the DICOM file (internal use only) - }; -} - - namespace OrthancStone { enum SliceOffsetMode