summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:58:58 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:58:58 +0000
commit90f057fdded3af992d2937f2b7b9a6a97447d0f1 (patch)
tree8aa11ca8cc53042532b1e31f2ec340f1277a1cd0 /apt-pkg
parent877d310f1af44e2acf8d12fe4a3341e5562e74bc (diff)
Use std C++ header names for includes
Author: jgg Date: 2002-03-26 07:38:57 GMT Use std C++ header names for includes
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/algorithms.cc4
-rw-r--r--apt-pkg/contrib/error.cc4
-rw-r--r--apt-pkg/pkgsystem.h4
-rw-r--r--apt-pkg/sourcelist.cc4
4 files changed, 8 insertions, 8 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc
index 2dd9aaaf1..86ced3057 100644
--- a/apt-pkg/algorithms.cc
+++ b/apt-pkg/algorithms.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: algorithms.cc,v 1.37 2001/12/26 06:47:37 jgg Exp $
+// $Id: algorithms.cc,v 1.38 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
Algorithms - A set of misc algorithms
@@ -24,7 +24,7 @@
#include <apti18n.h>
-#include <iostream.h>
+#include <iostream>
/*}}}*/
pkgProblemResolver *pkgProblemResolver::This = 0;
diff --git a/apt-pkg/contrib/error.cc b/apt-pkg/contrib/error.cc
index 6aa740d29..5fe9bdfce 100644
--- a/apt-pkg/contrib/error.cc
+++ b/apt-pkg/contrib/error.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: error.cc,v 1.10 2001/05/07 05:28:44 jgg Exp $
+// $Id: error.cc,v 1.11 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
Global Erorr Class - Global error mechanism
@@ -20,7 +20,7 @@
#include <apt-pkg/error.h>
-#include <iostream.h>
+#include <iostream>
#include <errno.h>
#include <stdio.h>
#include <string>
diff --git a/apt-pkg/pkgsystem.h b/apt-pkg/pkgsystem.h
index c6b34fd61..54da6fcc1 100644
--- a/apt-pkg/pkgsystem.h
+++ b/apt-pkg/pkgsystem.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: pkgsystem.h,v 1.4 2001/04/29 05:13:51 jgg Exp $
+// $Id: pkgsystem.h,v 1.5 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
System - Abstraction for running on different systems.
@@ -42,7 +42,7 @@
#endif
#include <apt-pkg/depcache.h>
-#include <vector.h>
+#include <vector>
class pkgPackageManager;
class pkgVersioningSystem;
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc
index e624bbec8..cb1287623 100644
--- a/apt-pkg/sourcelist.cc
+++ b/apt-pkg/sourcelist.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: sourcelist.cc,v 1.21 2002/03/20 05:51:20 jgg Exp $
+// $Id: sourcelist.cc,v 1.22 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
List of Sources
@@ -20,7 +20,7 @@
#include <apti18n.h>
-#include <fstream.h>
+#include <fstream>
/*}}}*/
using namespace std;