]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/debrecords.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: debrecords.h,v 1.1 1998/08/09 00:51:36 jgg Exp $
4 /* ######################################################################
6 Debian Package Records - Parser for debian package records
8 This provides display-type parsing for the Packages file. This is
9 different than the the list parser which provides cache generation
10 services. There should be no overlap between these two.
12 ##################################################################### */
14 // Header section: pkglib
15 #ifndef PKGLIB_DEBRECORDS_H
16 #define PKGLIB_DEBRECORDS_H
19 #pragma interface "apt-pkg/debrecords.h"
22 #include <apt-pkg/pkgrecords.h>
23 #include <apt-pkg/tagfile.h>
25 class debRecordParser
: public pkgRecords::Parser
28 pkgTagSection Section
;
32 virtual bool Jump(pkgCache::VerFileIterator
&Ver
);
34 debRecordParser(FileFd
&File
);