summaryrefslogtreecommitdiff
path: root/apt-pkg/pkgrecords.h
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2016-11-30 00:39:04 -0800
committerSam Bingner <sam@bingner.com>2019-08-17 12:34:41 -1000
commitfeb309b5b151378b7be899b66a54db9bcf2ea404 (patch)
tree09dcb860463bacfad6c5833b377cf0530997826e /apt-pkg/pkgrecords.h
parent13136de508adca373ea90d7c069777d03a6110e5 (diff)
The fastest way to get field values is as a range.
Diffstat (limited to 'apt-pkg/pkgrecords.h')
-rw-r--r--apt-pkg/pkgrecords.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-pkg/pkgrecords.h b/apt-pkg/pkgrecords.h
index dec722330..f78a6229f 100644
--- a/apt-pkg/pkgrecords.h
+++ b/apt-pkg/pkgrecords.h
@@ -100,6 +100,9 @@ class pkgRecords::Parser /*{{{*/
// The record in binary form
virtual void GetRec(const char *&Start,const char *&Stop) {Start = Stop = 0;};
+ // Locate a tag
+ virtual bool Find(const char *Tag,const char *&Start, const char *&End) {Start = End = 0; return false;};
+
Parser();
virtual ~Parser();