Mercurial > hg > orthanc
comparison OrthancFramework/Sources/HttpServer/HttpFileSender.h @ 4199:fbc49a65340a
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Sep 2020 20:28:20 +0200 |
parents | bf7b9edf6b81 |
children | 2007ab69ac16 |
comparison
equal
deleted
inserted
replaced
4198:c671331ea1ef | 4199:fbc49a65340a |
---|---|
59 /** | 59 /** |
60 * Implementation of the IHttpStreamAnswer interface. | 60 * Implementation of the IHttpStreamAnswer interface. |
61 **/ | 61 **/ |
62 | 62 |
63 virtual HttpCompression SetupHttpCompression(bool /*gzipAllowed*/, | 63 virtual HttpCompression SetupHttpCompression(bool /*gzipAllowed*/, |
64 bool /*deflateAllowed*/) | 64 bool /*deflateAllowed*/) ORTHANC_OVERRIDE |
65 { | 65 { |
66 return HttpCompression_None; | 66 return HttpCompression_None; |
67 } | 67 } |
68 | 68 |
69 virtual bool HasContentFilename(std::string& filename); | 69 virtual bool HasContentFilename(std::string& filename) ORTHANC_OVERRIDE; |
70 | 70 |
71 virtual std::string GetContentType(); | 71 virtual std::string GetContentType() ORTHANC_OVERRIDE; |
72 }; | 72 }; |
73 } | 73 } |