diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:23 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:23 +0000 |
commit | 36f610f18a9a12c02ba89c6bb84726f7ed3ba7ad (patch) | |
tree | e5094eaf749d5351f213800411c5ff815d85478b /apt-pkg/deb/debsrcrecords.h | |
parent | 3763d79d2322e8cd7459570b7d40395e10586550 (diff) |
Source record file list parsing
Author: jgg
Date: 1999-04-04 08:07:39 GMT
Source record file list parsing
Diffstat (limited to 'apt-pkg/deb/debsrcrecords.h')
-rw-r--r-- | apt-pkg/deb/debsrcrecords.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/deb/debsrcrecords.h b/apt-pkg/deb/debsrcrecords.h index 5d3b20488..76a0e2c33 100644 --- a/apt-pkg/deb/debsrcrecords.h +++ b/apt-pkg/deb/debsrcrecords.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: debsrcrecords.h,v 1.1 1999/04/04 01:17:29 jgg Exp $ +// $Id: debsrcrecords.h,v 1.2 1999/04/04 08:07:39 jgg Exp $ /* ###################################################################### Debian Source Package Records - Parser implementation for Debian style @@ -38,6 +38,7 @@ class debSrcRecordParser : public pkgSrcRecords::Parser virtual string Section() {return Sect.FindS("Section");}; virtual const char **Binaries(); virtual unsigned long Offset() {return iOffset;}; + virtual bool Files(vector<pkgSrcRecords::File> &F); debSrcRecordParser(FileFd *File) : Parser(File), Tags(*File,sizeof(Buffer)) {}; |