]> git.saurik.com Git - apt.git/blame_incremental - apt-private/private-show.h
factor out Pkg/DepIterator prettyprinters into own header
[apt.git] / apt-private / private-show.h
... / ...
CommitLineData
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
9class CommandLine;
10class pkgCacheFile;
11
12APT_PUBLIC bool ShowPackage(CommandLine &CmdL);
13APT_PUBLIC bool DisplayRecordV1(pkgCacheFile &CacheFile, pkgCache::VerIterator const &V, std::ostream &out);
14APT_PUBLIC bool ShowSrcPackage(CommandLine &CmdL);
15APT_PUBLIC bool Policy(CommandLine &CmdL);
16
17#endif