]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/upgrade.h
cleanup headers and especially #includes everywhere
[apt.git] / apt-pkg / upgrade.h
index c4973472f054db15446321461039e5557e3b7270..aa883df10aab1fe9d794042629d0a7e0932a336b 100644 (file)
 #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_INSTALL_NEW_PACKAGES = 2,
+         FORBID_INSTALL_NEW_PACKAGES = 2
       };
       bool Upgrade(pkgDepCache &Cache, int UpgradeMode);
    }