comparison Core/Compression/ZipWriter.h @ 644:eb5a0b21d05e

do not use ZIP64 as the default format anymore
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 29 Oct 2013 17:40:18 +0100
parents bdd72233b105
children 2d0a347e8cfc
comparison
equal deleted inserted replaced
643:8d1382acee29 644:eb5a0b21d05e
46 { 46 {
47 private: 47 private:
48 struct PImpl; 48 struct PImpl;
49 boost::shared_ptr<PImpl> pimpl_; 49 boost::shared_ptr<PImpl> pimpl_;
50 50
51 bool isZip64_;
51 bool hasFileInZip_; 52 bool hasFileInZip_;
52 uint8_t compressionLevel_; 53 uint8_t compressionLevel_;
53 std::string path_; 54 std::string path_;
54 55
55 public: 56 public:
56 ZipWriter(); 57 ZipWriter();
57 58
58 ~ZipWriter(); 59 ~ZipWriter();
60
61 void SetZip64(bool isZip64);
62
63 bool IsZip64() const
64 {
65 return isZip64_;
66 }
59 67
60 void SetCompressionLevel(uint8_t level); 68 void SetCompressionLevel(uint8_t level);
61 69
62 uint8_t GetCompressionLevel() const 70 uint8_t GetCompressionLevel() const
63 { 71 {