]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire.h
refer to apt-secure(8) in unsecure repositories warning
[apt.git] / apt-pkg / acquire.h
index 0d2b21233b1bd7584186743f4dede8cde9b02f4d..3e5ca41cdb88eb1aed67e17b04a8cd0424300a92 100644 (file)
@@ -4,7 +4,7 @@
 
    Acquire - File Acquiration
    
-   This module contians the Acquire system. It is responsible for bringing
+   This module contains the Acquire system. It is responsible for bringing
    files into the local pathname space. It deals with URIs for files and
    URI handlers responsible for downloading or finding the URIs.
    
@@ -303,9 +303,11 @@ class pkgAcquire
 
    /** \brief Get the head of the list of items. */
    inline ItemIterator ItemsBegin() {return Items.begin();};
+   inline ItemCIterator ItemsBegin() const {return Items.begin();};
 
    /** \brief Get the end iterator of the list of items. */
    inline ItemIterator ItemsEnd() {return Items.end();};
+   inline ItemCIterator ItemsEnd() const {return Items.end();};
    
    // Iterate over queued Item URIs
    class UriIterator;