comparison OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h @ 4201:2d5209153b32

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 08:18:28 +0200
parents bf7b9edf6b81
children db3932f9660d
comparison
equal deleted inserted replaced
4200:7112a8af0b63 4201:2d5209153b32
65 65
66 /** 66 /**
67 * Implementation of the IHttpStreamAnswer interface. 67 * Implementation of the IHttpStreamAnswer interface.
68 **/ 68 **/
69 69
70 virtual uint64_t GetContentLength() 70 virtual uint64_t GetContentLength() ORTHANC_OVERRIDE
71 { 71 {
72 return size_; 72 return size_;
73 } 73 }
74 74
75 virtual bool ReadNextChunk(); 75 virtual bool ReadNextChunk() ORTHANC_OVERRIDE;
76 76
77 virtual const char* GetChunkContent() 77 virtual const char* GetChunkContent() ORTHANC_OVERRIDE
78 { 78 {
79 return chunk_.c_str(); 79 return chunk_.c_str();
80 } 80 }
81 81
82 virtual size_t GetChunkSize() 82 virtual size_t GetChunkSize() ORTHANC_OVERRIDE
83 { 83 {
84 return chunkSize_; 84 return chunkSize_;
85 } 85 }
86 }; 86 };
87 } 87 }