summaryrefslogtreecommitdiff
path: root/apt-pkg/depcache.h
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-05-03 10:51:55 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-05-03 10:51:55 +0200
commitcbc702ea5805ba63f6a032d38530879700f4d100 (patch)
tree0c64f8da7a9cea48d3af27f6668ad6fba39b64ac /apt-pkg/depcache.h
parent741b7da9de1d2ab470728f1e7f38b25e0d6a556c (diff)
tell the resolver a package is set on hold if it was set by the user
to Keep which happens for example if a user decides to "remove" a not installed package to forbid that it's part of the solution
Diffstat (limited to 'apt-pkg/depcache.h')
-rw-r--r--apt-pkg/depcache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/depcache.h b/apt-pkg/depcache.h
index b15cd527d..f95ad9a14 100644
--- a/apt-pkg/depcache.h
+++ b/apt-pkg/depcache.h
@@ -232,6 +232,7 @@ class pkgDepCache : protected pkgCache::Namespace
inline bool NewInstall() const {return Status == 2 && Mode == ModeInstall;};
inline bool Delete() const {return Mode == ModeDelete;};
inline bool Keep() const {return Mode == ModeKeep;};
+ inline bool Protect() const {return (iFlags & Protected) == Protected;};
inline bool Upgrade() const {return Status > 0 && Mode == ModeInstall;};
inline bool Upgradable() const {return Status >= 1;};
inline bool Downgrade() const {return Status < 0 && Mode == ModeInstall;};