]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire.h
implement apt-get source msg 'Please use: $vcs' for git
[apt.git] / apt-pkg / acquire.h
index 10025a6ef8c504e70ffb5f9b51aed553cfa40c3c..3e5ca41cdb88eb1aed67e17b04a8cd0424300a92 100644 (file)
@@ -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;