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

« back to all changes in this revision

Viewing changes to CPP/7zip/Common/MethodProps.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:
3
3
#ifndef __7Z_METHOD_PROPS_H
4
4
#define __7Z_METHOD_PROPS_H
5
5
 
 
6
#include "../../Common/MyVector.h"
 
7
 
 
8
#include "../../Windows/PropVariant.h"
 
9
 
6
10
#include "MethodId.h"
7
11
 
8
 
#include "../../Windows/PropVariant.h"
9
 
#include "../../Common/MyVector.h"
10
 
#include "../ICoder.h"
11
 
 
12
12
struct CProp
13
13
{
14
14
  PROPID Id;
18
18
struct CMethod
19
19
{
20
20
  CMethodId Id;
21
 
  CObjectVector<CProp> Properties;
 
21
  CObjectVector<CProp> Props;
22
22
};
23
23
 
24
24
struct CMethodsMode
30
30
 
31
31
  CMethodsMode()
32
32
      #ifdef COMPRESS_MT
33
 
      : NumThreads(1) 
 
33
      : NumThreads(1)
34
34
      #endif
35
35
  {}
36
36
  bool IsEmpty() const { return Methods.IsEmpty() ; }