~mvo/apt/dep8

« back to all changes in this revision

Viewing changes to apt-pkg/pkgcache.h

initialĀ BreaksĀ implementation

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
   class Namespace;
67
67
   
68
68
   // These are all the constants used in the cache structures
 
69
 
 
70
   // WARNING - if you change these lists you must also edit
 
71
   // the stringification in pkgcache.cc and also consider whether
 
72
   // the cache file will become incompatible.
69
73
   struct Dep
70
74
   {
71
75
      enum DepType {Depends=1,PreDepends=2,Suggests=3,Recommends=4,
72
 
         Conflicts=5,Replaces=6,Obsoletes=7};
 
76
         Conflicts=5,Replaces=6,Obsoletes=7,DpkgBreaks=8};
73
77
      enum DepCompareOp {Or=0x10,NoOp=0,LessEq=0x1,GreaterEq=0x2,Less=0x3,
74
78
         Greater=0x4,Equals=0x5,NotEquals=0x6};
75
79
   };