diff options
author | Michael Vogt <mvo@debian.org> | 2013-12-05 07:53:53 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-12-05 07:53:53 +0100 |
commit | d958636fdf39d8b1f08239f9981c8b6520bde7a6 (patch) | |
tree | 34fb658423e811a81acb3b2ba4c9093e88d1715c /apt-pkg/metaindex.h | |
parent | 86e3c55052737d57f9d0123f8aaacd044774c698 (diff) |
add new LocalFileName() method to metaindex
Diffstat (limited to 'apt-pkg/metaindex.h')
-rw-r--r-- | apt-pkg/metaindex.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/apt-pkg/metaindex.h b/apt-pkg/metaindex.h index 6503f7dc8..147154227 100644 --- a/apt-pkg/metaindex.h +++ b/apt-pkg/metaindex.h @@ -34,18 +34,22 @@ class metaIndex virtual std::string GetDist() const {return Dist;} virtual const char* GetType() const {return Type;} + // interface to to query it +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) + virtual std::string MetaIndexInfo(const char *Type) const {return "";}; + virtual std::string MetaIndexFile(const char *Types) const {return "";}; + virtual std::string MetaIndexURI(const char *Type) const {return "";}; + + // returns the path of the local file (or "" if its not available) + virtual std::string LocalFileName() const {return "";}; +#endif + // Interface for acquire virtual std::string ArchiveURI(std::string const& File) const = 0; virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const = 0; virtual std::vector<pkgIndexFile *> *GetIndexFiles() = 0; virtual bool IsTrusted() const = 0; -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) - virtual std::string MetaIndexInfo(const char *Type) const; - virtual std::string MetaIndexFile(const char *Types) const; - virtual std::string MetaIndexURI(const char *Type) const; -#endif - metaIndex(std::string const &URI, std::string const &Dist, char const * const Type) : Indexes(NULL), Type(Type), URI(URI), Dist(Dist) |