comparison OrthancFramework/Sources/HttpServer/BufferHttpSender.h @ 4200:7112a8af0b63

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Sep 2020 20:53:31 +0200
parents bf7b9edf6b81
children b30a8de92ad9
comparison
equal deleted inserted replaced
4199:fbc49a65340a 4200:7112a8af0b63
56 56
57 /** 57 /**
58 * Implementation of the IHttpStreamAnswer interface. 58 * Implementation of the IHttpStreamAnswer interface.
59 **/ 59 **/
60 60
61 virtual uint64_t GetContentLength() 61 virtual uint64_t GetContentLength() ORTHANC_OVERRIDE
62 { 62 {
63 return buffer_.size(); 63 return buffer_.size();
64 } 64 }
65 65
66 virtual bool ReadNextChunk(); 66 virtual bool ReadNextChunk() ORTHANC_OVERRIDE;
67 67
68 virtual const char* GetChunkContent(); 68 virtual const char* GetChunkContent() ORTHANC_OVERRIDE;
69 69
70 virtual size_t GetChunkSize(); 70 virtual size_t GetChunkSize() ORTHANC_OVERRIDE;
71 }; 71 };
72 } 72 }