diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:37 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:37 +0000 |
commit | f55a958ff2251f0061ab907157c99a350e56025f (patch) | |
tree | 244ee844d1a240d9566865667c7f77a3c3fb5100 /apt-pkg/pkgcache.cc | |
parent | 578bfd0aed2ec993f4ad85fa6a7094a852261422 (diff) |
Checkpoint
Author: jgg
Date: 1998-07-04 05:57:34 GMT
Checkpoint
Diffstat (limited to 'apt-pkg/pkgcache.cc')
-rw-r--r-- | apt-pkg/pkgcache.cc | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index b75fe6d94..fa0c363f7 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgcache.cc,v 1.1 1998/07/02 02:58:12 jgg Exp $ +// $Id: pkgcache.cc,v 1.2 1998/07/04 05:57:35 jgg Exp $ /* ###################################################################### Package Cache - Accessor code for the cache @@ -159,7 +159,12 @@ pkgCache::PkgIterator pkgCache::FindPkg(string Name) } /*}}}*/ -// Cache::PkgIterator - operator ++ - Postfix incr /*{{{*/ +// Bases for iterator classes /*{{{*/ +void pkgCache::VerIterator::_dummy() {} +void pkgCache::DepIterator::_dummy() {} +void pkgCache::PrvIterator::_dummy() {} + /*}}}*/ +// PkgIterator::operator ++ - Postfix incr /*{{{*/ // --------------------------------------------------------------------- /* This will advance to the next logical package in the hash table. */ void pkgCache::PkgIterator::operator ++(int) @@ -176,23 +181,18 @@ void pkgCache::PkgIterator::operator ++(int) } }; /*}}}*/ -// Bases for iterator classes /*{{{*/ -void pkgCache::VerIterator::_dummy() {} -void pkgCache::DepIterator::_dummy() {} -void pkgCache::PrvIterator::_dummy() {} - /*}}}*/ // PkgIterator::State - Check the State of the package /*{{{*/ // --------------------------------------------------------------------- /* By this we mean if it is either cleanly installed or cleanly removed. */ pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const { - if (Pkg->CurrentState == pkgSTATE_UnPacked || - Pkg->CurrentState == pkgSTATE_HalfConfigured) + if (Pkg->CurrentState == UnPacked || + Pkg->CurrentState == HalfConfigured) return NeedsConfigure; - if (Pkg->CurrentState == pkgSTATE_UnInstalled || - Pkg->CurrentState == pkgSTATE_HalfInstalled || - Pkg->InstState != pkgSTATE_Ok) + if (Pkg->CurrentState == UnInstalled || + Pkg->CurrentState == HalfInstalled || + Pkg->InstState != Ok) return NeedsUnpack; return NeedsNothing; @@ -204,8 +204,8 @@ pkgCache::PkgIterator::OkState pkgCache::PkgIterator::State() const conflicts. */ bool pkgCache::DepIterator::IsCritical() { - if (Dep->Type == pkgDEP_Conflicts || Dep->Type == pkgDEP_Depends || - Dep->Type == pkgDEP_PreDepends) + if (Dep->Type == Conflicts || Dep->Type == Depends || + Dep->Type == PreDepends) return true; return false; } @@ -280,7 +280,7 @@ pkgCache::Version **pkgCache::DepIterator::AllTargets() if (pkgCheckDep(TargetVer(),I.VerStr(),Dep->CompareOp) == false) continue; - if (Dep->Type == pkgDEP_Conflicts && ParentPkg() == I.ParentPkg()) + if (Dep->Type == Conflicts && ParentPkg() == I.ParentPkg()) continue; Size++; @@ -294,7 +294,7 @@ pkgCache::Version **pkgCache::DepIterator::AllTargets() if (pkgCheckDep(TargetVer(),I.ProvideVersion(),Dep->CompareOp) == false) continue; - if (Dep->Type == pkgDEP_Conflicts && ParentPkg() == I.OwnerPkg()) + if (Dep->Type == Conflicts && ParentPkg() == I.OwnerPkg()) continue; Size++; |