]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cachefile.h
merge with debian/sid
[apt.git] / apt-pkg / cachefile.h
index 09d3ec2676675c3063f32f5cc016b11eb7d245fe..243061f0fb24caf5a57acd4e403ed04d5678b92f 100644 (file)
@@ -25,6 +25,9 @@
 
 class pkgCacheFile
 {
+   /** \brief dpointer placeholder (for later in case we need it) */
+   void *d;
+
    protected:
    
    MMap *Map;
@@ -57,6 +60,7 @@ class pkgCacheFile
    bool Open(OpProgress *Progress = NULL, bool WithLock = true);
    inline bool ReadOnlyOpen(OpProgress *Progress = NULL) { return Open(Progress, false); };
    __deprecated bool Open(OpProgress &Progress,bool const &WithLock = true) { return Open(&Progress, WithLock); };
+   static void RemoveCaches();
    void Close();
 
    inline pkgCache* GetPkgCache() { BuildCaches(NULL, false); return Cache; };