summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/progress.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:50:56 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:50:56 +0000
commit1a7c9eba99a9521a7722be37d6bafe5fa4936630 (patch)
treef999c88f8cb2979fe442e6e1cd0778d01e4c535e /apt-pkg/contrib/progress.h
parent3164dff98e933252249afc0de9e8469b9696fd42 (diff)
Big changes
Author: jgg Date: 1998-08-23 03:52:22 GMT Big changes
Diffstat (limited to 'apt-pkg/contrib/progress.h')
-rw-r--r--apt-pkg/contrib/progress.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/apt-pkg/contrib/progress.h b/apt-pkg/contrib/progress.h
index 39e770fa3..e3530cdcb 100644
--- a/apt-pkg/contrib/progress.h
+++ b/apt-pkg/contrib/progress.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: progress.h,v 1.1 1998/07/21 05:33:21 jgg Exp $
+// $Id: progress.h,v 1.2 1998/08/23 03:52:23 jgg Exp $
/* ######################################################################
OpProgress - Operation Progress
@@ -40,6 +40,7 @@ class OpProgress
// Change reduction code
struct timeval LastTime;
string LastOp;
+ string LastSubOp;
protected:
@@ -58,7 +59,8 @@ class OpProgress
void SubProgress(unsigned long SubTotal,string Op);
void OverallProgress(unsigned long Current,unsigned long Total,
unsigned long Size,string Op);
-
+ virtual void Done() {};
+
OpProgress();
virtual ~OpProgress() {};
};
@@ -75,7 +77,7 @@ class OpTextProgress : public OpProgress
public:
- void Done();
+ virtual void Done();
OpTextProgress(bool NoUpdate = false) : NoUpdate(NoUpdate), LastLen(0) {};
virtual ~OpTextProgress() {Done();};