X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/02ceb810fe0de9b267a8b6a302505967afce6b5a..cc0a4c82b3c132abba9b9ec35fd61bc8b45a1b80:/apt-pkg/edsp/edsplistparser.h diff --git a/apt-pkg/edsp/edsplistparser.h b/apt-pkg/edsp/edsplistparser.h index 691ac83ed..7cd5ab2b3 100644 --- a/apt-pkg/edsp/edsplistparser.h +++ b/apt-pkg/edsp/edsplistparser.h @@ -14,6 +14,7 @@ #include #include #include +#include #include @@ -23,12 +24,8 @@ #include #endif -class FileFd; -class edspListParserPrivate; - -class APT_HIDDEN edspListParser : public debListParser +class APT_HIDDEN edspLikeListParser : public debListParser { - edspListParserPrivate * const d; public: virtual bool NewVersion(pkgCache::VerIterator &Ver) APT_OVERRIDE; virtual std::vector AvailableDescriptionLanguages() APT_OVERRIDE; @@ -38,12 +35,20 @@ class APT_HIDDEN edspListParser : public debListParser bool LoadReleaseInfo(pkgCache::RlsFileIterator &FileI,FileFd &File, std::string const §ion); - edspListParser(FileFd *File); - virtual ~edspListParser(); + edspLikeListParser(FileFd *File); + virtual ~edspLikeListParser(); +}; - protected: +class APT_HIDDEN edspListParser : public edspLikeListParser +{ + FileFd extendedstates; + FileFd preferences; + +protected: virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver) APT_OVERRIDE; +public: + edspListParser(FileFd *File); + virtual ~edspListParser(); }; - #endif