diff options
Diffstat (limited to 'apt-private/private-show.h')
-rw-r--r-- | apt-private/private-show.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/apt-private/private-show.h b/apt-private/private-show.h new file mode 100644 index 000000000..80871b817 --- /dev/null +++ b/apt-private/private-show.h @@ -0,0 +1,17 @@ +#ifndef APT_PRIVATE_SHOW_H +#define APT_PRIVATE_SHOW_H + +#include <apt-pkg/pkgcache.h> +#include <apt-pkg/macros.h> + +#include <iostream> + +class CommandLine; +class pkgCacheFile; + +APT_PUBLIC bool ShowPackage(CommandLine &CmdL); +APT_PUBLIC bool DisplayRecordV1(pkgCacheFile &CacheFile, pkgCache::VerIterator const &V, std::ostream &out); +APT_PUBLIC bool ShowSrcPackage(CommandLine &CmdL); +APT_PUBLIC bool Policy(CommandLine &CmdL); + +#endif |