diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:41 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:41 +0000 |
commit | 63d3141a1f9875ad970ad7850e56a9bf97256895 (patch) | |
tree | 14a569e5165ccceb1183fccade7414668ffae564 /apt-pkg/orderlist.h | |
parent | 7834cb579fe88a11bd3850363bbd4c77797581bb (diff) |
Minimal CD swaps
Author: jgg
Date: 2000-01-16 08:45:46 GMT
Minimal CD swaps
Diffstat (limited to 'apt-pkg/orderlist.h')
-rw-r--r-- | apt-pkg/orderlist.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apt-pkg/orderlist.h b/apt-pkg/orderlist.h index 7e1b8efbc..59949f106 100644 --- a/apt-pkg/orderlist.h +++ b/apt-pkg/orderlist.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: orderlist.h,v 1.7 1999/08/12 05:59:54 jgg Exp $ +// $Id: orderlist.h,v 1.8 2000/01/16 08:45:47 jgg Exp $ /* ###################################################################### Order List - Represents and Manipulates an ordered list of packages. @@ -48,11 +48,13 @@ class pkgOrderList // State Package **End; Package **List; + Package **AfterList; + Package **AfterEnd; string *FileList; DepIterator Loops[20]; int LoopCount; int Depth; - unsigned char *Flags; + unsigned short *Flags; // Main visit function bool VisitNode(PkgIterator Pkg); @@ -90,6 +92,7 @@ class pkgOrderList UnPacked = (1 << 4), Configured = (1 << 5), Removed = (1 << 6), // Early Remove InList = (1 << 7), + After = (1 << 8), States = (UnPacked | Configured | Removed)}; // Flag manipulators |