]> git.saurik.com Git - apt.git/blob - apt-pkg/deb/debrecords.h
Better description
[apt.git] / apt-pkg / deb / debrecords.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: debrecords.h,v 1.3 1998/11/13 04:23:38 jgg Exp $
4 /* ######################################################################
5
6 Debian Package Records - Parser for debian package records
7
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.
11
12 ##################################################################### */
13 /*}}}*/
14 // Header section: pkglib
15 #ifndef PKGLIB_DEBRECORDS_H
16 #define PKGLIB_DEBRECORDS_H
17
18 #ifdef __GNUG__
19 #pragma interface "apt-pkg/debrecords.h"
20 #endif
21
22 #include <apt-pkg/pkgrecords.h>
23 #include <apt-pkg/tagfile.h>
24
25 class debRecordParser : public pkgRecords::Parser
26 {
27 pkgTagFile Tags;
28 pkgTagSection Section;
29
30 string FindTag(const char *Tag);
31
32 protected:
33
34 virtual bool Jump(pkgCache::VerFileIterator const &Ver);
35
36 public:
37
38 // These refer to the archive file for the Version
39 virtual string FileName();
40 virtual string MD5Hash();
41
42 // These are some general stats about the package
43 virtual string Maintainer();
44 virtual string ShortDesc();
45 virtual string LongDesc();
46
47 debRecordParser(FileFd &File);
48 };
49
50
51 #endif