// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.59 2002/11/09 22:47:19 doogie Exp $
+// $Id: apt-cache.cc,v 1.60 2003/01/11 07:18:44 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
#include <stdio.h>
/*}}}*/
+using namespace std;
+
pkgCache *GCache = 0;
pkgSourceList *SrcList = 0;
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-config.cc,v 1.10 2002/11/09 17:11:25 doogie Exp $
+// $Id: apt-config.cc,v 1.11 2003/01/11 07:18:44 jgg Exp $
/* ######################################################################
APT Config - Program to manipulate APT configuration files
#include <iostream>
#include <string>
/*}}}*/
+using namespace std;
// DoShell - Handle the shell command /*{{{*/
// ---------------------------------------------------------------------
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-extracttemplates.cc,v 1.13 2002/11/09 23:08:08 doogie Exp $
+// $Id: apt-extracttemplates.cc,v 1.14 2003/01/11 07:18:44 jgg Exp $
/* ######################################################################
APT Extract Templates - Program to extract debconf config and template
#include "apt-extracttemplates.h"
/*}}}*/
+using namespace std;
+
#define TMPDIR "/tmp"
pkgCache *DebFile::Cache = 0;
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-sortpkgs.cc,v 1.4 2002/02/15 03:40:00 jgg Exp $
+// $Id: apt-sortpkgs.cc,v 1.5 2003/01/11 07:18:44 jgg Exp $
/* ######################################################################
APT Sort Packages - Program to sort Package and Source files
#include <unistd.h>
/*}}}*/
+using namespace std;
+
struct PkgName
{
string Name;