comparison Framework/Radiography/RadiographySceneReader.h @ 1070:d7887f88710f broker

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 15 Oct 2019 21:28:46 +0200
parents 1e80a925323a
children bdc6837d5917
comparison
equal deleted inserted replaced
1069:5d1b0d2f4b15 1070:d7887f88710f
73 }; 73 };
74 74
75 75
76 class RadiographySceneReader : public RadiographySceneBuilder 76 class RadiographySceneReader : public RadiographySceneBuilder
77 { 77 {
78 Deprecated::OrthancApiClient& orthancApiClient_; 78 private:
79 boost::shared_ptr<Deprecated::OrthancApiClient> orthancApiClient_;
79 80
80 public: 81 public:
81 RadiographySceneReader(RadiographyScene& scene, Deprecated::OrthancApiClient& orthancApiClient) : 82 RadiographySceneReader(RadiographyScene& scene,
83 boost::shared_ptr<Deprecated::OrthancApiClient> orthancApiClient) :
82 RadiographySceneBuilder(scene), 84 RadiographySceneBuilder(scene),
83 orthancApiClient_(orthancApiClient) 85 orthancApiClient_(orthancApiClient)
84 { 86 {
85 } 87 }
86 88