]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/algorithms.h
merged from donkult
[apt.git] / apt-pkg / algorithms.h
index ebe31cc103024ab08124cb57bf5d8b400cbf7329..050934badcae91779107a61de54ae2c05cda20e9 100644 (file)
@@ -78,6 +78,9 @@ private:
                                                                        /*}}}*/
 class pkgProblemResolver                                               /*{{{*/
 {
+   /** \brief dpointer placeholder (for later in case we need it) */
+   void *d;
+
    pkgDepCache &Cache;
    typedef pkgCache::PkgIterator PkgIterator;
    typedef pkgCache::VerIterator VerIterator;
@@ -105,6 +108,9 @@ class pkgProblemResolver                                            /*{{{*/
 
    void MakeScores();
    bool DoUpgrade(pkgCache::PkgIterator Pkg);
+
+   bool ResolveInternal(bool const BrokenFix = false);
+   bool ResolveByKeepInternal();
    
    public: