comparison Framework/Toolbox/OrthancSlicesLoader.h @ 77:f5f54ed8d307 wasm

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 24 May 2017 21:13:29 +0200
parents ffa6dded91bd
children 5945e81734a3
comparison
equal deleted inserted replaced
76:0aef120d7e1c 77:f5f54ed8d307
99 void ScheduleLoadSeries(const std::string& seriesId); 99 void ScheduleLoadSeries(const std::string& seriesId);
100 100
101 void ScheduleLoadInstance(const std::string& instanceId, 101 void ScheduleLoadInstance(const std::string& instanceId,
102 unsigned int frame); 102 unsigned int frame);
103 103
104 bool IsGeometryReady() const;
105
104 size_t GetSliceCount() const; 106 size_t GetSliceCount() const;
105 107
106 const Slice& GetSlice(size_t index) const; 108 const Slice& GetSlice(size_t index) const;
107 109
110 bool LookupSlice(size_t& index,
111 const SliceGeometry& plane) const;
112
108 void ScheduleLoadSliceImage(size_t index); 113 void ScheduleLoadSliceImage(size_t index);
109 }; 114 };
110 } 115 }