private-upgrade.h 331 B

1234567891011121314
  1. #ifndef APTPRIVATE_PRIVATE_UPGRADE_H
  2. #define APTPRIVATE_PRIVATE_UPGRADE_H
  3. #include <apt-pkg/macros.h>
  4. class CommandLine;
  5. APT_PUBLIC bool DoDistUpgrade(CommandLine &CmdL);
  6. APT_PUBLIC bool DoUpgrade(CommandLine &CmdL);
  7. bool DoUpgradeNoNewPackages(CommandLine &CmdL);
  8. bool DoUpgradeWithAllowNewPackages(CommandLine &CmdL);
  9. #endif