diff options
author | Michael Vogt <mvo@debian.org> | 2013-12-04 17:58:36 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-12-04 17:58:36 +0100 |
commit | 916e5cb41edfa015fd8ec42ba140eb7c0c4cb511 (patch) | |
tree | 351f7803644be7bac1a5458553e6d801850101bc /apt-pkg/deb/debmetaindex.h | |
parent | d85d0c09cee3aa5b84e45f46595f6dd617ce64b6 (diff) |
add #ifdefed ABI break & cleaner solution once the abi break is in place
Diffstat (limited to 'apt-pkg/deb/debmetaindex.h')
-rw-r--r-- | apt-pkg/deb/debmetaindex.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-pkg/deb/debmetaindex.h b/apt-pkg/deb/debmetaindex.h index b9ecab97c..fc0b7f948 100644 --- a/apt-pkg/deb/debmetaindex.h +++ b/apt-pkg/deb/debmetaindex.h @@ -3,6 +3,7 @@ #define PKGLIB_DEBMETAINDEX_H #include <apt-pkg/metaindex.h> +#include <apt-pkg/init.h> #include <map> #include <string> @@ -39,9 +40,13 @@ class debReleaseIndex : public metaIndex { virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const; std::vector <struct IndexTarget *>* ComputeIndexTargets() const; std::string Info(const char *Type, std::string const &Section, std::string const &Arch="") const; + +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) std::string MetaIndexInfo(const char *Type) const; std::string MetaIndexFile(const char *Types) const; std::string MetaIndexURI(const char *Type) const; +#endif + std::string IndexURI(const char *Type, std::string const &Section, std::string const &Arch="native") const; std::string IndexURISuffix(const char *Type, std::string const &Section, std::string const &Arch="native") const; std::string SourceIndexURI(const char *Type, const std::string &Section) const; |