comparison Framework/Deprecated/SmartLoader.h @ 1068:04a95ee91327 broker

recovery of OrthancStoneSingleFrame
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 15 Oct 2019 19:36:57 +0200
parents b537002f83a9
children 0ca50d275b9a
comparison
equal deleted inserted replaced
1067:05b2e71ed145 1068:04a95ee91327
40 40
41 typedef std::map<std::string, boost::shared_ptr<IVolumeSlicer> > PreloadingInstances; 41 typedef std::map<std::string, boost::shared_ptr<IVolumeSlicer> > PreloadingInstances;
42 PreloadingInstances preloadingInstances_; 42 PreloadingInstances preloadingInstances_;
43 43
44 SliceImageQuality imageQuality_; 44 SliceImageQuality imageQuality_;
45 OrthancApiClient& orthancApiClient_; 45 boost::shared_ptr<OrthancApiClient> orthancApiClient_;
46 46
47 public: 47 public:
48 SmartLoader(OrthancApiClient& orthancApiClient); // TODO: add maxPreloadStorageSizeInBytes 48 SmartLoader(boost::shared_ptr<OrthancApiClient> orthancApiClient); // TODO: add maxPreloadStorageSizeInBytes
49 49
50 // void PreloadStudy(const std::string studyId); 50 // void PreloadStudy(const std::string studyId);
51 // void PreloadSeries(const std::string seriesId); 51 // void PreloadSeries(const std::string seriesId);
52 void PreloadSlice(const std::string instanceId, unsigned int frame); 52 void PreloadSlice(const std::string instanceId, unsigned int frame);
53 53