diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:51 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:51 +0000 |
commit | ad00ae81eb9e1f5384f8fe32879d483c72bbdace (patch) | |
tree | 90dc3818bc981902022cf43d1f44dc0c1fd2a45c /apt-pkg/pkgcachegen.h | |
parent | 8efa2a3ba4ae833415223a888e4561e57e4bf132 (diff) |
DumpAvail works and apt-cache is complete
Author: jgg
Date: 1998-07-19 04:22:00 GMT
DumpAvail works and apt-cache is complete
Diffstat (limited to 'apt-pkg/pkgcachegen.h')
-rw-r--r-- | apt-pkg/pkgcachegen.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index 0a4881057..a2eab8d43 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.5 1998/07/12 23:58:35 jgg Exp $ +// $Id: pkgcachegen.h,v 1.6 1998/07/19 04:22:03 jgg Exp $ /* ###################################################################### Package Cache Generator - Generator for the cache structure. @@ -69,7 +69,7 @@ class pkgCacheGenerator pkgCache::VerIterator Ver) = 0; virtual unsigned long Offset() = 0; virtual unsigned long Size() = 0; - + virtual bool Step() = 0; virtual ~ListParser() {}; @@ -78,7 +78,8 @@ class pkgCacheGenerator bool SelectFile(string File,unsigned long Flags = 0); bool MergeList(ListParser &List); - + inline pkgCache &GetCache() {return Cache;}; + pkgCacheGenerator(DynamicMMap &Map); ~pkgCacheGenerator(); }; |