Use proper namespace for iostream classes
[AXE.git] / src / money.h
index 44f7010..9689679 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : money.h
 **      SYSTEM NAME    : Andromeda X-Windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      :  Financial classes
 **
 
 /*****************************
    $Log: money.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: money.h,v 1.1 2002-07-25 08:01:27 arjen Exp $";
+// static const char RCSID[] = "$Id: money.h,v 1.2 2002-11-04 07:24:31 arjen Exp $";
 
 #ifndef MONEY_H
 #define MONEY_H
 
 #include <math.h>
-#include <iostream.h>
+#include <iostream>
 #include "String.h"
 
 /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
@@ -114,8 +117,8 @@ public:
       return *this;
    }
 
-   friend istream &operator>>(istream&, amount &);
-   friend ostream &operator<<(ostream&, amount);
+   friend std::istream &operator>>(std::istream&, amount &);
+   friend std::ostream &operator<<(std::ostream&, amount);
 
 };