diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:34 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:34 +0000 |
commit | f7a08e33bc039e967bf38c2ef78cbb7cd7bb658d (patch) | |
tree | 299ad2dfbdbef50a9fda4b44930a16d867b083f3 /apt-pkg/acquire.cc | |
parent | 7c57fe64e3cc676bb145c187da03ed9aa1ea3d47 (diff) |
Added --print-uris
Author: jgg
Date: 1999-01-30 06:07:24 GMT
Added --print-uris
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r-- | apt-pkg/acquire.cc | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index 125622e66..8b1f522f9 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire.cc,v 1.24 1999/01/27 02:48:52 jgg Exp $ +// $Id: acquire.cc,v 1.25 1999/01/30 06:07:24 jgg Exp $ /* ###################################################################### Acquire - File Acquiration @@ -413,6 +413,22 @@ unsigned long pkgAcquire::FetchNeeded() return Total; } /*}}}*/ +// pkgAcquire::UriBegin - Start iterator for the uri list /*{{{*/ +// --------------------------------------------------------------------- +/* */ +pkgAcquire::UriIterator pkgAcquire::UriBegin() +{ + return UriIterator(Queues); +} + /*}}}*/ +// pkgAcquire::UriEnd - End iterator for the uri list /*{{{*/ +// --------------------------------------------------------------------- +/* */ +pkgAcquire::UriIterator pkgAcquire::UriEnd() +{ + return UriIterator(0); +} + /*}}}*/ // Acquire::MethodConfig::MethodConfig - Constructor /*{{{*/ // --------------------------------------------------------------------- |