Use proper namespace for iostream classes
[AXE.git] / src / integer.h
index fa1f115..859079b 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : integer.h
 **      SYSTEM NAME    : AXE - Andromeda X-windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      :  Arbitrary length integer
 **
 
 /*****************************
    $Log: integer.h,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.h,v 1.1 2002-07-25 08:01:27 arjen Exp $"; */
+/* static const char *RCSID = "$Id: integer.h,v 1.2 2002-11-04 07:24:31 arjen Exp $"; */
 
 
-#include <stream.h>
+#include <iostream>
 
 /*
  *  The integer class (not int !) implements an arbitrary length
@@ -81,6 +84,6 @@ public:
 //   operator<<()
 //   operator>>()
 
-   friend ostream& operator<<(ostream&, integer&);
-   friend istream& operator>>(istream&, integer&);
+   friend std::ostream& operator<<(std::ostream&, integer&);
+   friend std::istream& operator>>(std::istream&, integer&);
 };