summaryrefslogtreecommitdiff
path: root/apt-pkg/srcrecords.h
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-06-10 14:43:56 +0200
committerMichael Vogt <mvo@debian.org>2014-06-10 14:43:56 +0200
commitc76af2fce4724977408c119452eab545b69a2d3b (patch)
tree9d6945f6bb7bef48630e56641801ee6dcfc80ce5 /apt-pkg/srcrecords.h
parent4dde2b4285fc6288e44e915a0d7bc0faac114a2e (diff)
parent462557017a0d8be321ca7d3eb96072f4db6a92ec (diff)
Merge remote-tracking branch 'mvo/feature/srcrec-enum2' into debian/sid
Diffstat (limited to 'apt-pkg/srcrecords.h')
-rw-r--r--apt-pkg/srcrecords.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/apt-pkg/srcrecords.h b/apt-pkg/srcrecords.h
index 9915debfe..82460d70f 100644
--- a/apt-pkg/srcrecords.h
+++ b/apt-pkg/srcrecords.h
@@ -95,8 +95,13 @@ class pkgSrcRecords
// Reset the search
bool Restart();
- // Locate a package by name
- Parser *Find(const char *Package,bool const &SrcOnly = false);
+ // Step to the next SourcePackage and return pointer to the
+ // next SourceRecord. The pointer is owned by libapt.
+ const Parser* Next();
+
+ // Locate a package by name and return pointer to the Parser.
+ // The pointer is owned by libapt.
+ Parser* Find(const char *Package,bool const &SrcOnly = false);
pkgSrcRecords(pkgSourceList &List);
virtual ~pkgSrcRecords();