X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/b0b4efb96c3fad90bf978d61b230501bcdadff3d..65a1e968442361247b646dc61843f841235114e0:/apt-pkg/cacheiterators.h diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index c5b4b14c0..6e71e8c8d 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: cacheiterators.h,v 1.10 1998/12/14 02:23:46 jgg Exp $ +// $Id: cacheiterators.h,v 1.12 1999/02/01 02:22:11 jgg Exp $ /* ###################################################################### Cache Iterators - Iterators for navigating the cache structure @@ -120,6 +120,7 @@ class pkgCache::VerIterator inline const char *VerStr() const {return Ver->VerStr == 0?0:Owner.StrP + Ver->VerStr;}; inline const char *Section() const {return Ver->Section == 0?0:Owner.StrP + Ver->Section;}; + inline const char *Arch() const {return Ver->Arch == 0?0:Owner.StrP + Ver->Arch;}; inline PkgIterator ParentPkg() const {return PkgIterator(Owner,Owner.PkgP + Ver->ParentPkg);}; inline DepIterator DependsList() const; inline PrvIterator ProvidesList() const; @@ -127,7 +128,10 @@ class pkgCache::VerIterator inline unsigned long Index() const {return Ver - Owner.VerP;}; bool Downloadable() const; const char *PriorityType(); - + + bool Automatic() const; + VerFileIterator NewestFile() const; + inline VerIterator(pkgCache &Owner,Version *Trg = 0) : Ver(Trg), Owner(Owner) { if (Ver == 0)