diff options
Diffstat (limited to 'apt-private/private-show.h')
-rw-r--r-- | apt-private/private-show.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/apt-private/private-show.h b/apt-private/private-show.h index 359aeeb28..b38c65f2f 100644 --- a/apt-private/private-show.h +++ b/apt-private/private-show.h @@ -1,14 +1,15 @@ #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; -namespace APT { - namespace Cmd { +APT_PUBLIC bool ShowPackage(CommandLine &CmdL); +APT_PUBLIC bool DisplayRecordV1(pkgCacheFile &CacheFile, pkgCache::VerIterator const &V, std::ostream &out); - APT_PUBLIC bool ShowPackage(CommandLine &CmdL); - } -} #endif |