Double slash bug
[ntk/apt.git] / apt-pkg / deb / debrecords.h
CommitLineData
f55ece0e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b2e465d6 3// $Id: debrecords.h,v 1.7 2001/02/20 07:03:17 jgg Exp $
f55ece0e
AL
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 /*}}}*/
f55ece0e
AL
14#ifndef PKGLIB_DEBRECORDS_H
15#define PKGLIB_DEBRECORDS_H
16
17#ifdef __GNUG__
18#pragma interface "apt-pkg/debrecords.h"
19#endif
20
21#include <apt-pkg/pkgrecords.h>
22#include <apt-pkg/tagfile.h>
23
24class debRecordParser : public pkgRecords::Parser
25{
b2e465d6 26 FileFd File;
f55ece0e
AL
27 pkgTagFile Tags;
28 pkgTagSection Section;
b2e465d6 29
7e798dd7
AL
30 protected:
31
03e39e59 32 virtual bool Jump(pkgCache::VerFileIterator const &Ver);
f55ece0e
AL
33
34 public:
7e798dd7
AL
35
36 // These refer to the archive file for the Version
37 virtual string FileName();
38 virtual string MD5Hash();
36375005 39 virtual string SourcePkg();
f55ece0e 40
7e798dd7
AL
41 // These are some general stats about the package
42 virtual string Maintainer();
43 virtual string ShortDesc();
44 virtual string LongDesc();
b2e465d6
AL
45 virtual string Name();
46
47 virtual void GetRec(const char *&Start,const char *&Stop);
f55ece0e 48
b2e465d6 49 debRecordParser(string FileName,pkgCache &Cache);
f55ece0e
AL
50};
51
f55ece0e 52#endif