diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:10 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:10 +0000 |
commit | c88edf1d276eb4e01b92835163bdd8574ded93db (patch) | |
tree | 58a2a86710184e87288f16656294606a152ac02a /apt-pkg/acquire-item.h | |
parent | 24231681aa99e84c8a6aae5e54b7e207e19d6087 (diff) |
Sync
Author: jgg
Date: 1998-10-24 04:57:55 GMT
Sync
Diffstat (limited to 'apt-pkg/acquire-item.h')
-rw-r--r-- | apt-pkg/acquire-item.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 8b2d6e908..352fc3e24 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-item.h,v 1.2 1998/10/22 04:56:39 jgg Exp $ +// $Id: acquire-item.h,v 1.3 1998/10/24 04:57:57 jgg Exp $ /* ###################################################################### Acquire Item - Item to acquire @@ -35,13 +35,19 @@ class pkgAcquire::Item public: + // State of the item + enum {StatIdle, StatFetching, StatDone, StatError} Status; + string ErrorText; + // Number of queues we are inserted into unsigned int QueueCounter; // File to write the fetch into string DestFile; - virtual void Failed() {}; + virtual void Failed(string Message); + virtual void Done(string Message,unsigned long Size,string Md5Hash); + virtual string Custom600Headers() {return string();}; Item(pkgAcquire *Owner); @@ -71,6 +77,8 @@ class pkgAcqIndexRel : public pkgAcquire::Item public: + virtual void Done(string Message,unsigned long Size,string Md5Hash); + virtual string Custom600Headers(); pkgAcqIndexRel(pkgAcquire *Owner,const pkgSourceList::Item *Location); |