Use proper namespace for iostream classes
[AXE.git] / src / font.h
index 1a2510d..c4455d9 100644 (file)
@@ -5,7 +5,7 @@
 ***********************
 **      FILE NAME      : font.h
 **      SYSTEM NAME    : AXE - Andromeda X-windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.1 $
+**      VERSION NUMBER : $Revision: 1.2 $
 **
 **  DESCRIPTION      : Definition of font class 
 **
 
 /*****************************
    $Log: font.h,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: font.h,v 1.1 2002-07-25 08:01:26 arjen Exp $"; */
+/* static const char *RCSID = "$Id: font.h,v 1.2 2002-11-04 07:24:31 arjen Exp $"; */
 
 #include <iostream>
 #include <X11/Xlib.h>
@@ -67,7 +70,7 @@ public:
       fs = XLoadQueryFont(stddpy.Dpy(), name);
       if (fs == NULL)
       {
-         cerr << "Warnig: can not open font " << name << "\n";
+         std::cerr << "Warnig: can not open font " << name << "\n";
       }
    }
 
@@ -89,7 +92,7 @@ public:
       fs = XLoadQueryFont(stddpy.Dpy(), name);
       if (fs == NULL)
       {
-         cerr << "Warnig: can not open font " << name << "\n";
+         std::cerr << "Warnig: can not open font " << name << "\n";
       }
    }