comparison Core/HttpServer/FilesystemHttpSender.h @ 1123:6c5a77637b23

rename
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Sep 2014 15:59:04 +0200
parents 2d0a347e8cfc
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1122:1d60316c3618 1123:6c5a77637b23
30 **/ 30 **/
31 31
32 #pragma once 32 #pragma once
33 33
34 #include "HttpFileSender.h" 34 #include "HttpFileSender.h"
35 #include "../FileStorage/FileStorage.h" 35 #include "../FileStorage/FilesystemStorage.h"
36 36
37 namespace Orthanc 37 namespace Orthanc
38 { 38 {
39 class FilesystemHttpSender : public HttpFileSender 39 class FilesystemHttpSender : public HttpFileSender
40 { 40 {
51 public: 51 public:
52 FilesystemHttpSender(const char* path); 52 FilesystemHttpSender(const char* path);
53 53
54 FilesystemHttpSender(const boost::filesystem::path& path); 54 FilesystemHttpSender(const boost::filesystem::path& path);
55 55
56 FilesystemHttpSender(const FileStorage& storage, 56 FilesystemHttpSender(const FilesystemStorage& storage,
57 const std::string& uuid); 57 const std::string& uuid);
58 }; 58 };
59 } 59 }