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