comparison Core/FileStorage/CompressedFileStorageAccessor.h @ 1126:bf67431a7383

handling of file content type in IStorageArea
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Sep 2014 17:01:42 +0200
parents 790ff7a5b3bf
children ba9fd42284d0
comparison
equal deleted inserted replaced
1125:20ddab7e9ae8 1126:bf67431a7383
62 { 62 {
63 return compressionType_; 63 return compressionType_;
64 } 64 }
65 65
66 virtual void Read(std::string& content, 66 virtual void Read(std::string& content,
67 const std::string& uuid); 67 const std::string& uuid,
68 FileContentType type);
68 69
69 virtual HttpFileSender* ConstructHttpFileSender(const std::string& uuid); 70 virtual HttpFileSender* ConstructHttpFileSender(const std::string& uuid,
71 FileContentType type);
72
73 virtual void Remove(const std::string& uuid,
74 FileContentType type)
75 {
76 storage_.Remove(uuid, type);
77 }
70 }; 78 };
71 } 79 }