diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:11 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:11 +0000 |
commit | 2fd65468b3cb25c725a709f9b470ced0ab4823a6 (patch) | |
tree | ca4ae9007380e92eac7b4c9b0ac14f0335413543 /apt-pkg/orderlist.h | |
parent | 29f7b36cd63f16ceab825531b5c131eac4b99f9b (diff) |
Fixed handling of missing files
Author: jgg
Date: 1999-07-04 23:22:53 GMT
Fixed handling of missing files
Diffstat (limited to 'apt-pkg/orderlist.h')
-rw-r--r-- | apt-pkg/orderlist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-pkg/orderlist.h b/apt-pkg/orderlist.h index 7a33b97cc..5456984e4 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.3 1999/07/03 03:10:35 jgg Exp $ +// $Id: orderlist.h,v 1.4 1999/07/04 23:22:53 jgg Exp $ /* ###################################################################### Order List - Represents and Manipulates an ordered list of packages. @@ -99,7 +99,9 @@ class pkgOrderList inline void Flag(PkgIterator Pkg,unsigned long F) {Flags[Pkg->ID] |= F;}; inline void Flag(Package *Pkg,unsigned long F) {Flags[Pkg->ID] |= F;}; inline bool IsNow(PkgIterator Pkg) {return (Flags[Pkg->ID] & States) == 0;}; + bool IsMissing(PkgIterator Pkg); void WipeFlags(unsigned long F); + void SetFileList(string *FileList) {this->FileList = FileList;}; // Accessors inline iterator begin() {return List;}; |