comparison Framework/Toolbox/OrthancSeriesLoader.h @ 31:9aace933cb64

sharing code with the Orthanc core
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Dec 2016 15:41:20 +0100
parents 351ab0da0150
children 517c46f527cd
comparison
equal deleted inserted replaced
30:1099a148f7e5 31:9aace933cb64
46 { 46 {
47 private: 47 private:
48 class Slice; 48 class Slice;
49 class SetOfSlices; 49 class SetOfSlices;
50 50
51 IOrthancConnection& orthanc_; 51 OrthancPlugins::IOrthancConnection& orthanc_;
52 boost::shared_ptr<SetOfSlices> slices_; 52 boost::shared_ptr<SetOfSlices> slices_;
53 ParallelSlices geometry_; 53 ParallelSlices geometry_;
54 Orthanc::PixelFormat format_; 54 Orthanc::PixelFormat format_;
55 unsigned int width_; 55 unsigned int width_;
56 unsigned int height_; 56 unsigned int height_;
57 57
58 void CheckFrame(const Orthanc::ImageAccessor& frame) const; 58 void CheckFrame(const Orthanc::ImageAccessor& frame) const;
59 59
60 public: 60 public:
61 OrthancSeriesLoader(IOrthancConnection& orthanc, 61 OrthancSeriesLoader(OrthancPlugins::IOrthancConnection& orthanc,
62 const std::string& series); 62 const std::string& series);
63 63
64 virtual Orthanc::PixelFormat GetPixelFormat() 64 virtual Orthanc::PixelFormat GetPixelFormat()
65 { 65 {
66 return format_; 66 return format_;