comparison Core/Compression/ZipWriter.h @ 249:5694365ecb96

fixes for windows
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Dec 2012 09:28:06 +0100
parents c9b3ba0fd140
children 9cd240cfd3a6
comparison
equal deleted inserted replaced
248:2442033911d6 249:5694365ecb96
72 const std::string& GetOutputPath() const 72 const std::string& GetOutputPath() const
73 { 73 {
74 return path_; 74 return path_;
75 } 75 }
76 76
77 void CreateFileInZip(const char* path); 77 void OpenFile(const char* path);
78 78
79 void Write(const char* data, size_t length); 79 void Write(const char* data, size_t length);
80 80
81 void Write(const std::string& data); 81 void Write(const std::string& data);
82 }; 82 };