private-show.h 340 B

12345678910111213141516
  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. #endif