comparison Framework/Inputs/DecodedTiledPyramid.h @ 216:c35a3a0627b9

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 12 Jan 2021 10:21:36 +0100
parents 1e864138f0da
children 49f647ed1b4c
comparison
equal deleted inserted replaced
215:02cb86d07966 216:c35a3a0627b9
56 uint8_t& green, 56 uint8_t& green,
57 uint8_t& blue) const; 57 uint8_t& blue) const;
58 58
59 virtual Orthanc::ImageAccessor* DecodeTile(unsigned int level, 59 virtual Orthanc::ImageAccessor* DecodeTile(unsigned int level,
60 unsigned int tileX, 60 unsigned int tileX,
61 unsigned int tileY); 61 unsigned int tileY) ORTHANC_OVERRIDE;
62 62
63 virtual bool ReadRawTile(std::string& tile, 63 virtual bool ReadRawTile(std::string& tile,
64 ImageCompression& compression, 64 ImageCompression& compression,
65 unsigned int level, 65 unsigned int level,
66 unsigned int tileX, 66 unsigned int tileX,
67 unsigned int tileY) 67 unsigned int tileY) ORTHANC_OVERRIDE
68 { 68 {
69 return false; // No access to the raw tiles 69 return false; // No access to the raw tiles
70 } 70 }
71 }; 71 };
72 } 72 }