diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:05 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:05 +0000 |
commit | 076d01b04c20200fc72fc22de41c4872af484650 (patch) | |
tree | 69b1cf0aefd04868fb193132a2623fea137528f7 /cmdline/acqprogress.cc | |
parent | 43b3b6267f24ef28f74f9b16999844fb9809e72b (diff) |
G++3 fixes from Randolph
Author: jgg
Date: 2001-05-27 04:45:49 GMT
G++3 fixes from Randolph
Diffstat (limited to 'cmdline/acqprogress.cc')
-rw-r--r-- | cmdline/acqprogress.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc index e7b6b9ab8..ee833923c 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acqprogress.cc,v 1.21 2001/02/20 07:03:17 jgg Exp $ +// $Id: acqprogress.cc,v 1.22 2001/05/27 04:46:43 jgg Exp $ /* ###################################################################### Acquire Progress - Command line progress meter @@ -18,8 +18,11 @@ #include <stdio.h> #include <signal.h> +#include <iostream> /*}}}*/ +using namespace std; + // AcqTextStatus::AcqTextStatus - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ |