]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cachefile.h
Purge support
[apt.git] / apt-pkg / cachefile.h
index 23bd4008badc1aaf1c6fd11b115abbe63ca0a001..e2414446e17bd61064d14898d9288b50c59802bd 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: cachefile.h,v 1.1 1999/04/18 06:36:36 jgg Exp $
+// $Id: cachefile.h,v 1.3 1999/06/27 03:18:28 jgg Exp $
 /* ######################################################################
    
    CacheFile - Simple wrapper class for opening, generating and whatnot
@@ -33,8 +33,11 @@ class pkgCacheFile
       
    // We look pretty much exactly like a pointer to a dep cache
    inline operator pkgDepCache &() {return *Cache;};
+   inline operator pkgDepCache *() {return Cache;};
    inline pkgDepCache *operator ->() {return Cache;};
    inline pkgDepCache &operator *() {return *Cache;};
+   inline pkgDepCache::StateCache &operator [](pkgCache::PkgIterator const &I) {return (*Cache)[I];};
+   inline unsigned char &operator [](pkgCache::DepIterator const &I) {return (*Cache)[I];};
 
    // Release the dpkg status lock
    inline void ReleaseLock() {Lock->Close();};