]> git.saurik.com Git - apt.git/commitdiff
Use std C++ header names for includes
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:58:58 +0000 (16:58 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:58:58 +0000 (16:58 +0000)
Author: jgg
Date: 2002-03-26 07:38:57 GMT
Use std C++ header names for includes

12 files changed:
apt-inst/contrib/extracttar.cc
apt-inst/deb/dpkgdb.cc
apt-inst/extract.cc
apt-pkg/algorithms.cc
apt-pkg/contrib/error.cc
apt-pkg/pkgsystem.h
apt-pkg/sourcelist.cc
cmdline/apt-cache.cc
cmdline/apt-get.cc
cmdline/indexcopy.cc
debian/changelog
test/versiontest.cc

index 95869fe4a3dac20024305e0551df7c756d943700..e0feaee122781c3e7f4f9ef9a98ae42c38ae6f48 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: extracttar.cc,v 1.4 2001/09/30 04:06:59 jgg Exp $
+// $Id: extracttar.cc,v 1.5 2002/03/26 07:38:58 jgg Exp $
 /* ######################################################################
 
    Extract a Tar - Tar Extractor
@@ -30,7 +30,7 @@
 #include <unistd.h>
 #include <signal.h>
 #include <fcntl.h>
-#include <iostream.h>
+#include <iostream>
                                                                        /*}}}*/
     
 // The on disk header for a tar file.
index 047702f506f79d144b103004bfdad5ea93e1078a..6c790540c8509f48eb8e5c239cf0920e4b3397a6 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: dpkgdb.cc,v 1.4 2001/05/27 23:50:42 jgg Exp $
+// $Id: dpkgdb.cc,v 1.5 2002/03/26 07:38:58 jgg Exp $
 /* ######################################################################
 
    DPKGv1 Database Implemenation
@@ -31,7 +31,7 @@
 #include <fcntl.h>
 #include <unistd.h>
 #include <ctype.h>
-#include <iostream.h>
+#include <iostream>
                                                                        /*}}}*/
 
 // EraseDir - Erase A Directory                                                /*{{{*/
index 5c5ad55b2b01f7bef988825877d6e345cfcd068d..d184a5e9d6ddf1114d139791e3ff3290607df15a 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: extract.cc,v 1.3 2001/05/27 23:47:14 jgg Exp $
+// $Id: extract.cc,v 1.4 2002/03/26 07:38:57 jgg Exp $
 /* ######################################################################
 
    Archive Extraction Directory Stream
@@ -56,7 +56,7 @@
 #include <unistd.h>
 #include <errno.h>
 #include <dirent.h>
-#include <iostream.h>
+#include <iostream>
                                                                        /*}}}*/
 
 static const char *TempExt = "dpkg-tmp";
index 2dd9aaaf1fcb3973b6a88546a86378efb66fdb92..86ced3057828edabc42d00b2b7fad6f67ff448c7 100644 (file)
@@ -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;
index 6aa740d291b7952f850397c55035333ecf2a780e..5fe9bdfce6bccbc1dc1d3fe618bc2f24d7710d08 100644 (file)
@@ -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>
index c6b34fd612036e3386d41f9d60f50d72040cb173..54da6fcc1a55e737e765cc37fc61c252d5fb265a 100644 (file)
@@ -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;
index e624bbec82b29b30214e67478ecd8acaaea4d757..cb1287623f71447b0f3414254e4c3988896f76c2 100644 (file)
@@ -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;
index c82964d182f8bddd1346dfa4375c852e23b33bca..6acb62cc6bc5fc117d6cd1701aa25eb73c292c38 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-cache.cc,v 1.57 2002/03/20 05:51:52 jgg Exp $
+// $Id: apt-cache.cc,v 1.58 2002/03/26 07:38:58 jgg Exp $
 /* ######################################################################
    
    apt-cache - Manages the cache files
@@ -32,7 +32,7 @@
 #include <apti18n.h>
 
 #include <locale.h>
-#include <iostream.h>
+#include <iostream>
 #include <unistd.h>
 #include <errno.h>
 #include <regex.h>
index 98461051e62c16957f670849ee6f6ae7ea07b5b5..a6355af311ffaf882eaa5e3c50e9654f97f2ed15 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-get.cc,v 1.115 2002/03/20 05:51:52 jgg Exp $
+// $Id: apt-get.cc,v 1.116 2002/03/26 07:38:58 jgg Exp $
 /* ######################################################################
    
    apt-get - Cover for dpkg
@@ -46,7 +46,7 @@
 #include "acqprogress.h"
 
 #include <locale.h>
-#include <fstream.h>
+#include <fstream>
 #include <termios.h>
 #include <sys/ioctl.h>
 #include <sys/stat.h>
index 48edb143accb08c9160c29c0b5f743671c507b5d..3ce12a94b2f5cea08bc56f90b3670bedf0b6bbd2 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: indexcopy.cc,v 1.9 2001/08/18 22:20:40 jgg Exp $
+// $Id: indexcopy.cc,v 1.10 2002/03/26 07:38:58 jgg Exp $
 /* ######################################################################
 
    Index Copying - Aid for copying and verifying the index files
@@ -19,7 +19,7 @@
 #include <apt-pkg/configuration.h>
 #include <apt-pkg/tagfile.h>
 
-#include <iostream.h>
+#include <iostream>
 #include <unistd.h>
 #include <sys/stat.h>
 #include <stdio.h>
index fd8f13bccc1f479a0f2b7c91283732f9a704ef1e..58d2af3d2da3d8b310a4b71516f1081a4180308a 100644 (file)
@@ -12,14 +12,15 @@ apt (0.5.5) unstable; urgency=low
   * /usr/doc reference in postinst. Closes: #126189
   * Doc updates. Closes: #120689
   * Possible apt-cache segfault. Closes: #120311, #118431, #117915, #135295,
-          #131062
+          #131062, #136749
   * Print special message for EAI_AGAIN. Closes: #131397
   * libapt-pkg-dev needs to bring in the apt-inst library if linking
     is to work. Closes: #133943
   * Typos, Doc Stuff. Closes: #132772, #129970, #123642, #114892, #113786,
-         #109591, #105920, #103678
+         #109591, #105920, #103678, #139752, #138186, #138054   
   * Fix possibility for tag file parsing to fail in some unlikely situations.
-    Closes: #139328    
+    Closes: #139328
+  * Use std C++ names for some header files. Closes: #128741
   
  -- Randolph Chung <tausq@debian.org>  Tue,  4 Dec 2001 23:26:42 -0800
 
index 20da49b7234dfa58ca8cc73843875e6abb3282c9..3f90adf05ef36e934309143ed4bca8054c2afca3 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: versiontest.cc,v 1.2 2001/02/20 07:03:18 jgg Exp $
+// $Id: versiontest.cc,v 1.3 2002/03/26 07:38:58 jgg Exp $
 /* ######################################################################
 
    Version Test - Simple program to run through a file and comare versions.
@@ -18,8 +18,8 @@
 #include <system.h>
 #include <apt-pkg/error.h>
 #include <apt-pkg/version.h>
-#include <iostream.h>
-#include <fstream.h>
+#include <iostream>
+#include <fstream>
 
   static int verrevcmp(const char *val, const char *ref) 
 {