summaryrefslogtreecommitdiff
path: root/apt-private/private-download.h
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2015-10-26 19:30:44 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2015-11-04 18:04:04 +0100
commit9055d5e68bd09f31df00e45bd14cb599ba3735e5 (patch)
tree0cab141c3e7fdf5de5e9940dd394b9dbf0503c62 /apt-private/private-download.h
parent41d39345bdc31cb9b8be057cd678aa2890830437 (diff)
hidden support more apt-get/apt-cache commands in apt
apt is supposed to be a user-friendly interface, so while these commands are usually poweruser material and therefore do not need to be shown in general introduction manpages/help messages its of no use to not allow users to use them. This includes clean, autoclean, build-dep, source, download, changelog, depends, rdepends and showsrc – it doesn't include more non-interactive commands like dump or xvcg as those are usually used by scripts if at all. Closes: 778234, 780700, 781237
Diffstat (limited to 'apt-private/private-download.h')
-rw-r--r--apt-private/private-download.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/apt-private/private-download.h b/apt-private/private-download.h
index 7df8f284a..587165166 100644
--- a/apt-private/private-download.h
+++ b/apt-private/private-download.h
@@ -27,4 +27,12 @@ public:
aptAcquireWithTextStatus();
};
+class CommandLine;
+
+APT_PUBLIC bool DoDownload(CommandLine &CmdL);
+APT_PUBLIC bool DoChangelog(CommandLine &CmdL);
+
+APT_PUBLIC bool DoClean(CommandLine &CmdL);
+APT_PUBLIC bool DoAutoClean(CommandLine &CmdL);
+
#endif