X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/82e369c4b93b5b81db7988ab377a3c5bd388268e..183160cb20cd4aa86e78657bf060bf688edce703:/apt-pkg/upgrade.h diff --git a/apt-pkg/upgrade.h b/apt-pkg/upgrade.h index 9fdfac2fd..aa883df10 100644 --- a/apt-pkg/upgrade.h +++ b/apt-pkg/upgrade.h @@ -10,17 +10,20 @@ #ifndef PKGLIB_UPGRADE_H #define PKGLIB_UPGRADE_H +class pkgDepCache; + namespace APT { namespace Upgrade { // FIXME: make this "enum class UpgradeMode {" once we enable c++11 enum UpgradeMode { FORBID_REMOVE_PACKAGES = 1, - FORBID_NEW_INSTALL_PACKAGES = 2, + 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);