summaryrefslogtreecommitdiff
path: root/databases/xbase/files/patch-xbase::xbstring.h
blob: 16f5b282baf7f1765b57c40b7b9b3804074f9393 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- xbase/xbstring.h.orig	Sat Jan 27 06:00:32 2001
+++ xbase/xbstring.h	Sat Nov 22 22:30:42 2003
@@ -56,7 +56,11 @@
 #endif
 
 #include <stdlib.h>
-#include <iostream.h>
+#include <iostream>
+
+using std::endl;
+using std::cin;
+using std::cout;
 
 /*! \file xbstring.h
 */
@@ -119,7 +123,7 @@
   bool operator <= ( const xbString& ) const;
   bool operator >= ( const xbString& ) const;
 
-  friend ostream& operator << ( ostream&, const xbString& );
+  friend std::ostream& operator << ( std::ostream&, const xbString& );
 
   xbString &remove(size_t pos = 0, int n = npos);
   xbString mid(size_t pos = 0, int n = npos) const;