summaryrefslogtreecommitdiff
path: root/apt-pkg/upgrade.h
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-10-05 12:15:03 +0200
committerMichael Vogt <mvo@debian.org>2013-10-05 12:15:03 +0200
commit82e369c4b93b5b81db7988ab377a3c5bd388268e (patch)
tree0c5f6b5a36a55212842789ee284c6b9a493ba54f /apt-pkg/upgrade.h
parent7cf45682e5fcac541e495242bdc4885bbb8b2ef7 (diff)
* move upgrade releated code into upgrade.{cc,h}
The upgrade releated code is moved into upgrade.{cc,h} and all pkg*Upgrade* prototypes are included in algorihms.h to avoid breaking API (unless build with APT_9_CLEANER_HEADERS).
Diffstat (limited to 'apt-pkg/upgrade.h')
-rw-r--r--apt-pkg/upgrade.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/apt-pkg/upgrade.h b/apt-pkg/upgrade.h
new file mode 100644
index 000000000..9fdfac2fd
--- /dev/null
+++ b/apt-pkg/upgrade.h
@@ -0,0 +1,29 @@
+// -*- 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_NEW_INSTALL_PACKAGES = 2,
+ };
+ bool Upgrade(pkgDepCache &Cache, int UpgradeMode);
+ }
+}
+
+bool pkgDistUpgrade(pkgDepCache &Cache);
+bool pkgAllUpgrade(pkgDepCache &Cache);
+bool pkgMinimizeUpgrade(pkgDepCache &Cache);
+
+
+#endif