Use proper namespace for iostream classes
[AXE.git] / src / integer.cpp
index 131ac74..f3d5cbe 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : integer.cpp
 **      SYSTEM NAME    : AXE - Andromeda X-windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      :  
 **
 
 /*****************************
    $Log: integer.cpp,v $
-   Revision 1.1  2002-07-25 08:01:27  arjen
+   Revision 1.2  2002-11-04 07:24:31  arjen
+   Use proper namespace for iostream classes
+
+   Revision 1.1  2002/07/25 08:01:27  arjen
    First checkin, AXE release 0.2
 
 *****************************/
 
-static const char *RCSID = "$Id: integer.cpp,v 1.1 2002-07-25 08:01:27 arjen Exp $";
+static const char *RCSID = "$Id: integer.cpp,v 1.2 2002-11-04 07:24:31 arjen Exp $";
 
 
 #include "integer.h"
@@ -53,7 +56,7 @@ integer integer::operator+(integer &a) // Add a to *this
    return r;
 }
 
-ostream& operator<<(ostream &s, integer &i)
+std::ostream& operator<<(std::ostream &s, integer &i)
 {
    int j;
 
@@ -64,7 +67,7 @@ ostream& operator<<(ostream &s, integer &i)
    return s;
 }
 
-istream& operator>>(istream &s, integer &i)
+std::istream& operator>>(std::istream &s, integer &i)
 {
    return s;
 }