// -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-ftparchive.h,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: apt-ftparchive.h,v 1.3 2001/05/29 03:51:37 jgg Exp $
 /* ######################################################################
 
    Writer 
 
 #include <fstream>
 
+using std::ostream;
+using std::ofstream;
+
 extern ostream c0out;
 extern ostream c1out;
 extern ostream c2out;
 
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: cachedb.cc,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: cachedb.cc,v 1.3 2001/05/29 03:50:33 jgg Exp $
 /* ######################################################################
 
    CacheDB
    
    MD5Res = MD5.Result();
    InitQuery("m5");
-   if (Put(MD5Res.begin(),MD5Res.length()) == true)
+   if (Put(MD5Res.c_str(),MD5Res.length()) == true)
       CurStat.Flags |= FlMD5;
    return true;
 }
 
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: multicompress.cc,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: multicompress.cc,v 1.3 2001/05/29 03:48:27 jgg Exp $
 /* ######################################################################
 
    MultiCompressor
 #include <sys/stat.h>
 #include <utime.h>
 #include <unistd.h>
+#include <iostream>    
                                                                        /*}}}*/
 
+using namespace std;
+
 const MultiCompress::CompType MultiCompress::Compressors[] =
       {{".","",0,0,0,1},
        {"gzip",".gz","gzip","-9n","-d",2},
 
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: override.h,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: override.h,v 1.3 2001/05/29 03:49:53 jgg Exp $
 /* ######################################################################
 
    Override
 
 #include <map>
 #include <string>
+
+using std::string;
+using std::map;
     
 class Override
 {