diff options
author | Julian Andres Klode <jak@debian.org> | 2011-07-20 16:37:56 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2011-07-20 16:37:56 +0200 |
commit | 0688ccd8d9ae40741f1a2ef0de25a59e2203fc5e (patch) | |
tree | e36723222a32aa90a16092806e9b516fc7e59c0e /apt-pkg/pkgcache.h | |
parent | 6932831f2ace44eb3e586186ac848c8ca9b690da (diff) |
apt-pkg/pkgcache.h: Add pkgCache::Header::CacheFileSize, storing the cache size
Diffstat (limited to 'apt-pkg/pkgcache.h')
-rw-r--r-- | apt-pkg/pkgcache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h index 9a9f79420..87912aead 100644 --- a/apt-pkg/pkgcache.h +++ b/apt-pkg/pkgcache.h @@ -314,6 +314,9 @@ struct pkgCache::Header map_ptrloc PkgHashTable[2*1048]; map_ptrloc GrpHashTable[2*1048]; + /** \brief Size of the complete cache file */ + unsigned long CacheFileSize; + bool CheckSizes(Header &Against) const; Header(); }; |