]>
Commit | Line | Data |
---|---|---|
1 | #ifndef APT_PRIVATE_SHOW_H | |
2 | #define APT_PRIVATE_SHOW_H | |
3 | ||
4 | #include <apt-pkg/pkgcache.h> | |
5 | #include <apt-pkg/macros.h> | |
6 | ||
7 | #include <iostream> | |
8 | ||
9 | class CommandLine; | |
10 | class pkgCacheFile; | |
11 | ||
12 | APT_PUBLIC bool ShowPackage(CommandLine &CmdL); | |
13 | APT_PUBLIC bool DisplayRecordV1(pkgCacheFile &CacheFile, pkgCache::VerIterator const &V, std::ostream &out); | |
14 | APT_PUBLIC bool ShowSrcPackage(CommandLine &CmdL); | |
15 | APT_PUBLIC bool Policy(CommandLine &CmdL); | |
16 | ||
17 | #endif |