]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/clean.h
respect user pinning in M-A:same version (un)screwing
[apt.git] / apt-pkg / clean.h
index 930d54a7ff3021e4464b7982d201278bed6fbe7b..6cedae0869a7811426273c9bca57e51cbddc21a7 100644 (file)
@@ -21,16 +21,18 @@ class pkgCache;
 class pkgArchiveCleaner
 {
    /** \brief dpointer placeholder (for later in case we need it) */
-   void *d;
+   void * const d;
 
    protected:
-   
+
    virtual void Erase(const char * /*File*/,std::string /*Pkg*/,std::string /*Ver*/,struct stat & /*St*/) {};
 
-   public:   
-   
+   public:
+
    bool Go(std::string Dir,pkgCache &Cache);
-   virtual ~pkgArchiveCleaner() {};
+
+   pkgArchiveCleaner();
+   virtual ~pkgArchiveCleaner();
 };
 
 #endif