]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/dpkgpm.h
Refactor the cache iterators by using a common base class
[apt.git] / apt-pkg / deb / dpkgpm.h
index 4494691266009531fec97eb36538ff24325fa7ca..43e5c7d45df21d251923233c2e02e0e68f66d865 100644 (file)
@@ -47,15 +47,13 @@ class pkgDPkgPM : public pkgPackageManager
    // the int is the state that is already done (e.g. a package that is
    // going to be install is already in state "half-installed")
    map<string,unsigned int> PackageOpsDone;
-   // map the dpkg "processing" info to human readable names
-   map<string,string> PackageProcessingOps;
    // progress reporting
    unsigned int PackagesDone;
    unsigned int PackagesTotal;
   
    struct Item
    {
-      enum Ops {Install, Configure, Remove, Purge} Op;
+      enum Ops {Install, Configure, Remove, Purge, ConfigurePending, TriggersPending} Op;
       string File;
       PkgIterator Pkg;
       Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op),