diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-25 21:54:52 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-25 21:54:52 +0100 |
commit | 62dcafb391a940534d5fb3b804dc461b1187d706 (patch) | |
tree | 83d28ffd4b0af97a0bba4f59c9a44e18091186b6 /apt-pkg/sourcelist.h | |
parent | e093518c03b49a2def83d8b680be4490fed6e69c (diff) | |
parent | 8c39c4b6e65036390b8ca4d74174192739a4139d (diff) |
Merge branch 'debian/experimental-no-abi-break' into debian/sid
Diffstat (limited to 'apt-pkg/sourcelist.h')
-rw-r--r-- | apt-pkg/sourcelist.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/apt-pkg/sourcelist.h b/apt-pkg/sourcelist.h index 02e27101a..0ccb4aa00 100644 --- a/apt-pkg/sourcelist.h +++ b/apt-pkg/sourcelist.h @@ -31,6 +31,7 @@ #include <vector> #include <map> #include <apt-pkg/pkgcache.h> +#include <apt-pkg/tagfile.h> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/metaindex.h> @@ -60,6 +61,10 @@ class pkgSourceList const char *Label; bool FixupURI(std::string &URI) const; + virtual bool ParseStanza(std::vector<metaIndex *> &List, + pkgTagSection &Tags, + int stanza_n, + FileFd &Fd); virtual bool ParseLine(std::vector<metaIndex *> &List, const char *Buffer, unsigned long const &CurLine,std::string const &File) const; @@ -75,7 +80,10 @@ class pkgSourceList protected: std::vector<metaIndex *> SrcList; - + + int ParseFileDeb822(std::string File); + bool ParseFileOldStyle(std::string File); + public: bool ReadMainList(); |