X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/db5c1b541994e1b6d9b64a44206002b726c42dbe..d77559acad5da864e764aef8aed08046e4d38ed4:/apt-pkg/indexfile.h diff --git a/apt-pkg/indexfile.h b/apt-pkg/indexfile.h index 06e5a7f35..1904fddea 100644 --- a/apt-pkg/indexfile.h +++ b/apt-pkg/indexfile.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: indexfile.h,v 1.3 2001/03/11 07:35:49 jgg Exp $ +// $Id: indexfile.h,v 1.6 2002/07/08 03:13:30 jgg Exp $ /* ###################################################################### Index File - Abstraction for an index of archive/source file. @@ -30,6 +30,8 @@ #include #include +using std::string; + class pkgAcquire; class pkgCacheGenerator; class OpProgress; @@ -58,7 +60,7 @@ class pkgIndexFile virtual string ArchiveInfo(pkgCache::VerIterator Ver) const; virtual string SourceInfo(pkgSrcRecords::Parser const &Record, pkgSrcRecords::File const &File) const; - virtual string Describe() const = 0; + virtual string Describe(bool Short = false) const = 0; // Interface for acquire virtual string ArchiveURI(string /*File*/) const {return string();}; @@ -72,6 +74,7 @@ class pkgIndexFile virtual bool HasPackages() const = 0; virtual unsigned long Size() const = 0; virtual bool Merge(pkgCacheGenerator &/*Gen*/,OpProgress &/*Prog*/) const {return false;}; + virtual bool MergeFileProvides(pkgCacheGenerator &/*Gen*/,OpProgress &/*Prog*/) const {return true;}; virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const; virtual ~pkgIndexFile() {};