diff options
author | Ishan Jayawardena <udeshike@gmail.com> | 2011-06-25 19:31:30 +0530 |
---|---|---|
committer | Ishan Jayawardena <udeshike@gmail.com> | 2011-06-25 19:31:30 +0530 |
commit | 1792371c2700e42a18c934a91442340c4fce7924 (patch) | |
tree | 9578dd3d2a6707110dffaba793fc8740afd78c38 /apt-pkg/acquire-item.h | |
parent | 5da0f9fd194b76fd82482fbe533d963fc87f315d (diff) |
Added the replacement rule for replacing regular URIs with that of debdelta repo.
Diffstat (limited to 'apt-pkg/acquire-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index ebe503cda..aa852ccc9 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -1067,6 +1067,10 @@ class pkgAcqDebdelta : public pkgAcquire::Item */ bool Trusted; + /** + * \brief used to debug the class + */ + bool Debug; /** \brief Queue up the next available file for this version. */ bool QueueNext(); @@ -1080,7 +1084,7 @@ class pkgAcqDebdelta : public pkgAcquire::Item virtual void Finished(); virtual string HashSum() {return ExpectedHash.toStr(); }; virtual bool IsTrusted() {return Trusted;}; - + virtual bool ReplaceURI(); /** \brief Create a new pkgAcqArchive. * * \param Owner The pkgAcquire object with which this item is |