private-show.h 434 B

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