diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:27 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:27 +0000 |
commit | 03e39e592311fd327ea516d31567557830634c86 (patch) | |
tree | 6fc4479836bf5df004ecc5b387854d95a54a7b05 /apt-pkg/pkgrecords.h | |
parent | d7827acababa05db7e901d2dfeb27538ef6a6142 (diff) |
Archive acquire code
Author: jgg
Date: 1998-11-13 04:23:26 GMT
Archive acquire code
Diffstat (limited to 'apt-pkg/pkgrecords.h')
-rw-r--r-- | apt-pkg/pkgrecords.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/pkgrecords.h b/apt-pkg/pkgrecords.h index 28cb728c6..9fc30acd2 100644 --- a/apt-pkg/pkgrecords.h +++ b/apt-pkg/pkgrecords.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: pkgrecords.h,v 1.2 1998/10/08 04:55:00 jgg Exp $ +// $Id: pkgrecords.h,v 1.3 1998/11/13 04:23:35 jgg Exp $ /* ###################################################################### Package Records - Allows access to complete package description records @@ -48,8 +48,8 @@ class pkgRecords public: // Lookup function - Parser &Lookup(pkgCache::VerFileIterator &Ver); - + Parser &Lookup(pkgCache::VerFileIterator const &Ver); + // Construct destruct pkgRecords(pkgCache &Cache); ~pkgRecords(); @@ -59,7 +59,7 @@ class pkgRecords::Parser { protected: - virtual bool Jump(pkgCache::VerFileIterator &Ver) = 0; + virtual bool Jump(pkgCache::VerFileIterator const &Ver) = 0; public: friend pkgRecords; |