~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to CPP/7zip/Archive/Zip/ZipHandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
namespace NArchive {
20
20
namespace NZip {
21
21
 
22
 
class CHandler: 
 
22
class CHandler:
23
23
  public IInArchive,
24
24
  public IOutArchive,
25
25
  public ISetProperties,
45
45
private:
46
46
  CObjectVector<CItemEx> m_Items;
47
47
  CInArchive m_Archive;
48
 
  bool m_ArchiveIsOpen;
49
48
 
50
49
  int m_Level;
51
50
  int m_MainMethod;
56
55
  UInt32 m_NumMatchFinderCycles;
57
56
  bool m_NumMatchFinderCyclesDefined;
58
57
 
 
58
  bool m_ForceAesMode;
59
59
  bool m_IsAesMode;
60
60
  Byte m_AesKeyMode;
61
61
 
73
73
  {
74
74
    m_Level = -1;
75
75
    m_MainMethod = -1;
76
 
    m_Algo = 
77
 
    m_DicSize = 
78
 
    m_NumPasses = 
79
 
    m_NumFastBytes = 
 
76
    m_Algo =
 
77
    m_DicSize =
 
78
    m_NumPasses =
 
79
    m_NumFastBytes =
80
80
    m_NumMatchFinderCycles = 0xFFFFFFFF;
81
81
    m_NumMatchFinderCyclesDefined = false;
 
82
    m_ForceAesMode = false;
82
83
    m_IsAesMode = false;
83
84
    m_AesKeyMode = 3; // aes-256
84
85
    m_WriteNtfsTimeExtra = false;