diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:30 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:30 +0000 |
commit | 43d017d69796a5093cb12506ec59285a34915b7f (patch) | |
tree | 1591e63d3dc4d89e02b00f4e5f103944e7a6c0bc /apt-pkg/cacheiterators.h | |
parent | fcf85120ef8c7e953a23a49768c0d5b84385efcd (diff) |
New OR globbing mechanism
Author: jgg
Date: 1998-11-14 07:20:06 GMT
New OR globbing mechanism
Diffstat (limited to 'apt-pkg/cacheiterators.h')
-rw-r--r-- | apt-pkg/cacheiterators.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index 7cdc197a2..51714d259 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.7 1998/10/02 04:39:44 jgg Exp $ +// $Id: cacheiterators.h,v 1.8 1998/11/14 07:20:08 jgg Exp $ /* ###################################################################### Cache Iterators - Iterators for navigating the cache structure @@ -171,9 +171,11 @@ class pkgCache::DepIterator inline bool Reverse() {return Type == DepRev;}; inline unsigned long Index() const {return Dep - Owner->DepP;}; bool IsCritical(); + void GlobOr(DepIterator &Start,DepIterator &End); Version **AllTargets(); bool SmartTargetPkg(PkgIterator &Result); const char *CompType(); + const char *DepType(); inline DepIterator(pkgCache &Owner,Dependency *Trg,Version * = 0) : Dep(Trg), Type(DepVer), Owner(&Owner) |