X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/0fffbc8ce4cb6357f59db63db5571f46a668a66b..ed793a19ec00b83254029509bc516e3ba911c75a:/apt-pkg/metaindex.h?ds=sidebyside diff --git a/apt-pkg/metaindex.h b/apt-pkg/metaindex.h index 9cc79a7a6..6c3d2880b 100644 --- a/apt-pkg/metaindex.h +++ b/apt-pkg/metaindex.h @@ -1,14 +1,27 @@ #ifndef PKGLIB_METAINDEX_H #define PKGLIB_METAINDEX_H +#include +#include + +#include #include -#include -#include +#include -class pkgAcquire; +#ifndef APT_10_CLEANER_HEADERS +#include class pkgCacheGenerator; class OpProgress; +#endif +#ifndef APT_8_CLEANER_HEADERS +#include +#include +#include +using std::string; +#endif + +class pkgAcquire; class metaIndex { @@ -21,30 +34,28 @@ class metaIndex public: - // Various accessors virtual std::string GetURI() const {return URI;} virtual std::string GetDist() const {return Dist;} virtual const char* GetType() const {return Type;} + // interface to to query it +#if APT_PKG_ABI >= 413 + /** \return the path of the local file (or "" if its not available) */ + virtual std::string LocalFileName() const; +#else + std::string LocalFileName() const; +#endif + // Interface for acquire - virtual std::string ArchiveURI(std::string const& /*File*/) const = 0; + virtual std::string ArchiveURI(std::string const& File) const = 0; virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const = 0; - - virtual std::vector *GetIndexFiles() = 0; + virtual std::vector *GetIndexFiles() = 0; virtual bool IsTrusted() const = 0; - metaIndex(std::string const &URI, std::string const &Dist, char const * const Type) : - Indexes(NULL), Type(Type), URI(URI), Dist(Dist) { - } - - virtual ~metaIndex() { - if (Indexes == 0) - return; - for (std::vector::iterator I = (*Indexes).begin(); I != (*Indexes).end(); ++I) - delete *I; - delete Indexes; - } + metaIndex(std::string const &URI, std::string const &Dist, + char const * const Type); + virtual ~metaIndex(); }; #endif