]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/clean.h
move implementation of checksums around by abstracting even more
[apt.git] / apt-pkg / clean.h
index ee65fcb61a2d36ef62d15594f1ee4fb5efb362b6..1ebf68dc94d91fab50a46d3f43457daa45e9735d 100644 (file)
 #ifndef APTPKG_CLEAN_H
 #define APTPKG_CLEAN_H
 
-#ifdef __GNUG__
-#pragma interface "apt-pkg/clean.h"
-#endif 
 
 #include <apt-pkg/pkgcache.h>
 
 class pkgArchiveCleaner
 {
+   /** \brief dpointer placeholder (for later in case we need it) */
+   void *d;
+
    protected:
    
    virtual void Erase(const char * /*File*/,string /*Pkg*/,string /*Ver*/,struct stat & /*St*/) {};
@@ -25,6 +25,7 @@ class pkgArchiveCleaner
    public:   
    
    bool Go(string Dir,pkgCache &Cache);
+   virtual ~pkgArchiveCleaner() {};
 };
 
 #endif