comparison Core/HttpServer/FilesystemHttpHandler.h @ 1441:f3672356c121

refactoring: IHttpHandler and HttpToolbox
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 01 Jul 2015 10:38:39 +0200
parents feaf2840917c
children 8dc80ba768aa
comparison
equal deleted inserted replaced
1440:3567503c00a7 1441:f3672356c121
30 **/ 30 **/
31 31
32 32
33 #pragma once 33 #pragma once
34 34
35 #include "HttpHandler.h" 35 #include "IHttpHandler.h"
36 36
37 #include <boost/shared_ptr.hpp> 37 #include <boost/shared_ptr.hpp>
38 38
39 namespace Orthanc 39 namespace Orthanc
40 { 40 {
41 class FilesystemHttpHandler : public HttpHandler 41 class FilesystemHttpHandler : public IHttpHandler
42 { 42 {
43 private: 43 private:
44 // PImpl idiom to avoid the inclusion of boost::filesystem 44 // PImpl idiom to avoid the inclusion of boost::filesystem
45 // throughout the software 45 // throughout the software
46 struct PImpl; 46 struct PImpl;