diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-23 09:13:30 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-23 09:13:30 +0100 |
commit | 7d2428e03c1fdae79488b9ecd53cc5257b2a0c13 (patch) | |
tree | 81209b60212c997452fd74cf184b8ca5445e8bc0 /apt-pkg/upgrade.h | |
parent | f62f17b489405432a3125e51471d8a00e78c5170 (diff) | |
parent | 61f954bff040809e7ab57b3adec2fe95339ffb94 (diff) |
Merge branch 'debian/sid' into ubuntu/master
Conflicts:
debian/changelog
Diffstat (limited to 'apt-pkg/upgrade.h')
-rw-r--r-- | apt-pkg/upgrade.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/apt-pkg/upgrade.h b/apt-pkg/upgrade.h new file mode 100644 index 000000000..c4973472f --- /dev/null +++ b/apt-pkg/upgrade.h @@ -0,0 +1,30 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/* ###################################################################### + + Upgrade - Upgrade/DistUpgrade releated code + + ##################################################################### */ + /*}}}*/ + +#ifndef PKGLIB_UPGRADE_H +#define PKGLIB_UPGRADE_H + +namespace APT { + namespace Upgrade { + // FIXME: make this "enum class UpgradeMode {" once we enable c++11 + enum UpgradeMode { + FORBID_REMOVE_PACKAGES = 1, + FORBID_INSTALL_NEW_PACKAGES = 2, + }; + bool Upgrade(pkgDepCache &Cache, int UpgradeMode); + } +} + +// please use APT::Upgrade::Upgrade() instead +bool pkgDistUpgrade(pkgDepCache &Cache); +bool pkgAllUpgrade(pkgDepCache &Cache); +bool pkgMinimizeUpgrade(pkgDepCache &Cache); + + +#endif |