Use proper namespace for iostream classes
[AXE.git] / src / amount.cpp
index 834813f..af5e888 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : amount.cpp
 **      SYSTEM NAME    : Andromeda X-Windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      :  Financial classes : amount
 **
 
 /*****************************
    $Log: amount.cpp,v $
-   Revision 1.1  2002-07-25 08:01:26  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:26  arjen
    First checkin, AXE release 0.2
 
 *****************************/
 
-static const char RCSID[] = "$Id: amount.cpp,v 1.1 2002-07-25 08:01:26 arjen Exp $";
+static const char RCSID[] = "$Id: amount.cpp,v 1.2 2002-11-04 07:24:31 arjen Exp $";
 
 #include "money.h"
 
-istream &operator>>(istream &s, amount &a)
+std::istream &operator>>(std::istream &s, amount &a)
 {
    long   hundreds;
    char   c;
@@ -43,7 +46,7 @@ istream &operator>>(istream &s, amount &a)
    return s;
 }
 
-ostream &operator<<(ostream &s, amount a)
+std::ostream &operator<<(std::ostream &s, amount a)
 {
    if (a == 0)
    {