blob: 16bb93c9ba023a3ccc42f541edeef750a7f8914b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef APTPRIVATE_PRIVATE_UPGRADE_H
#define APTPRIVATE_PRIVATE_UPGRADE_H
#include <apt-pkg/macros.h>
class CommandLine;
APT_PUBLIC bool DoDistUpgrade(CommandLine &CmdL);
APT_PUBLIC bool DoUpgrade(CommandLine &CmdL);
bool DoUpgradeNoNewPackages(CommandLine &CmdL);
bool DoUpgradeWithAllowNewPackages(CommandLine &CmdL);
#endif
|