summaryrefslogtreecommitdiff
path: root/games/znibbles/files/patch-src::Base.H
blob: 0ca0d53c5be2a3962858b52196d34cc1bf64d1ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- src/Base.H	Wed May 12 11:40:22 1999
+++ src/Base.H	Sat Oct 26 00:30:09 2002
@@ -32,7 +32,7 @@
 #define __H_BASE__
 
 
-#include <iostream.h>
+#include <iostream>
 
 
 // #define DEBUG
@@ -55,8 +55,8 @@
   inline ~Base()
   {
     total--;
-    cout << "  <" << id << "/" << global_id 
-	 << " deleted><left=" << total << ">  " << endl;
+    std::cout << "  <" << id << "/" << global_id 
+	 << " deleted><left=" << total << ">  " << std::endl;
   }
 #else
 
@@ -65,7 +65,7 @@
 
 #endif
 
-  void display() {  cout << "ID: " << id << endl; }
+  void display() {  std::cout << "ID: " << id << std::endl; }
 
 private:
   static int global_id;