diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-09-08 22:14:11 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-09-14 15:22:18 +0200 |
commit | 188a6fcf4f13df1fd362a0aff27a23493ddd1ec5 (patch) | |
tree | d7d29209986acf989484cd0050601b55d5e40dba /apt-pkg/edsp/edsplistparser.h | |
parent | 8fec289ad8a2c42350c24d5c97b0f104fbbea176 (diff) |
implement autobit and pinning in EDSP solver 'apt'
The parser creates a preferences as well as an extended states file
based on the EDSP scenario file, which isn't the most efficient way of
dealing with this as thes text files have to be parsed again by another
layer of the code, but it needs the least changes and works good enough
for now. The 'apt' solver is in the end just a test solver like dump.
Diffstat (limited to 'apt-pkg/edsp/edsplistparser.h')
-rw-r--r-- | apt-pkg/edsp/edsplistparser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/edsp/edsplistparser.h b/apt-pkg/edsp/edsplistparser.h index 221229302..25363e1c7 100644 --- a/apt-pkg/edsp/edsplistparser.h +++ b/apt-pkg/edsp/edsplistparser.h @@ -24,10 +24,11 @@ #endif class FileFd; +class edspListParserPrivate; class APT_HIDDEN edspListParser : public debListParser { - void * const d; + edspListParserPrivate * const d; public: virtual bool NewVersion(pkgCache::VerIterator &Ver) APT_OVERRIDE; virtual std::string Description(); |