]> git.saurik.com Git - apt.git/blob - apt-pkg/edsp/edsplistparser.h
merge with current debian apt/experimental
[apt.git] / apt-pkg / edsp / edsplistparser.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 /* ######################################################################
4
5 EDSP Package List Parser - This implements the abstract parser
6 interface for the APT specific intermediate format which is passed
7 to external resolvers
8
9 ##################################################################### */
10 /*}}}*/
11 #ifndef PKGLIB_EDSPLISTPARSER_H
12 #define PKGLIB_EDSPLISTPARSER_H
13
14 #include <apt-pkg/deblistparser.h>
15
16 class FileFd;
17
18 class edspListParser : public debListParser
19 {
20 public:
21 virtual bool NewVersion(pkgCache::VerIterator &Ver);
22 virtual std::string Description();
23 virtual std::string DescriptionLanguage();
24 virtual MD5SumValue Description_md5();
25 virtual unsigned short VersionHash();
26
27 bool LoadReleaseInfo(pkgCache::PkgFileIterator &FileI,FileFd &File,
28 std::string section);
29
30 edspListParser(FileFd *File, std::string const &Arch = "");
31
32 protected:
33 virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver);
34
35 };
36
37 #endif