X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/0a84390105eee4349d30bb40be9f45f68468308f..bc87e700890863acd48fd61a5bc8dcc2386afd20:/apt-pkg/srcrecords.h?ds=inline diff --git a/apt-pkg/srcrecords.h b/apt-pkg/srcrecords.h index f63d0934d..99cbc6060 100644 --- a/apt-pkg/srcrecords.h +++ b/apt-pkg/srcrecords.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: srcrecords.h,v 1.7 2001/05/07 04:24:08 jgg Exp $ +// $Id: srcrecords.h,v 1.8.2.1 2003/12/26 16:27:34 mdz Exp $ /* ###################################################################### Source Package Records - Allows access to source package records @@ -13,9 +13,6 @@ #ifndef PKGLIB_SRCRECORDS_H #define PKGLIB_SRCRECORDS_H -#ifdef __GNUG__ -#pragma interface "apt-pkg/srcrecords.h" -#endif #include #include @@ -72,7 +69,7 @@ class pkgSrcRecords virtual string Section() const = 0; virtual const char **Binaries() = 0; // Ownership does not transfer - virtual bool BuildDepends(vector &BuildDeps) = 0; + virtual bool BuildDepends(vector &BuildDeps, bool ArchOnly) = 0; static const char *BuildDepType(unsigned char Type); virtual bool Files(vector &F) = 0; @@ -84,8 +81,8 @@ class pkgSrcRecords private: // The list of files and the current parser pointer - Parser **Files; - Parser **Current; + vector Files; + vector::iterator Current; public: