diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:54 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:54 +0000 |
commit | b35d2f5fa0e797bf7062a1a7448a5d54bb396071 (patch) | |
tree | f87dc91079639f2a250b8901265ef35e4517cf5a /apt-pkg/pkgcachegen.h | |
parent | f1148902de0b269467d445554f5d860513e39871 (diff) |
Progress and combined cache generator
Author: jgg
Date: 1998-07-26 04:49:26 GMT
Progress and combined cache generator
Diffstat (limited to 'apt-pkg/pkgcachegen.h')
-rw-r--r-- | apt-pkg/pkgcachegen.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index ff397bfac..c572f828a 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgcachegen.h,v 1.8 1998/07/21 05:33:20 jgg Exp $ +// $Id: pkgcachegen.h,v 1.9 1998/07/26 04:49:32 jgg Exp $ /* ###################################################################### Package Cache Generator - Generator for the cache structure. @@ -25,7 +25,9 @@ #endif #include <apt-pkg/pkgcache.h> -#include <apt-pkg/progress.h> + +class pkgSourceList; +class OpProgress; class pkgCacheGenerator { @@ -88,9 +90,13 @@ class pkgCacheGenerator bool SelectFile(string File,unsigned long Flags = 0); bool MergeList(ListParser &List); inline pkgCache &GetCache() {return Cache;}; - + pkgCacheGenerator(DynamicMMap &Map,OpProgress &Progress); ~pkgCacheGenerator(); }; +bool pkgSrcCacheCheck(pkgSourceList &List); +bool pkgPkgCacheCheck(string CacheFile); +bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress); + #endif |