summaryrefslogtreecommitdiff
path: root/ftparchive/writer.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:58:15 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:58:15 +0000
commit8c58f506d753d736184f3d764a200efce6c9cdf3 (patch)
tree3367f2b073ff279ddb94bf1c41f25c89a888a242 /ftparchive/writer.h
parent812f4169fee839b6cc6532a76276e0a957aeba77 (diff)
G++3 fixes from Randolph
Author: jgg Date: 2001-05-29 04:08:09 GMT G++3 fixes from Randolph
Diffstat (limited to 'ftparchive/writer.h')
-rw-r--r--ftparchive/writer.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/ftparchive/writer.h b/ftparchive/writer.h
index a5fb6f52b..cc6375875 100644
--- a/ftparchive/writer.h
+++ b/ftparchive/writer.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: writer.h,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: writer.h,v 1.3 2001/05/29 04:08:09 jgg Exp $
/* ######################################################################
Writer
@@ -19,10 +19,15 @@
#include <string>
#include <stdio.h>
+#include <iostream>
#include "cachedb.h"
#include "override.h"
#include "apt-ftparchive.h"
+
+using std::string;
+using std::cout;
+using std::endl;
class FTWScanner
{