Make mamer compilable
authorH.G. Muller <h.g.muller@hccnet.nl>
Fri, 21 Oct 2011 21:07:53 +0000 (23:07 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Fri, 21 Oct 2011 21:07:53 +0000 (23:07 +0200)
Apparently some non-compliancies that were still accepted under
Ubuntu 8.04 are not accepted anymore.

lasker-2.2.3/bots/mamer/Game.hh
lasker-2.2.3/bots/mamer/Mamer.hh
lasker-2.2.3/bots/mamer/Player.hh
lasker-2.2.3/bots/mamer/Storage.hh
lasker-2.2.3/bots/mamer/Tourney.hh
lasker-2.2.3/bots/mamer/TourneyPlayers.hh
lasker-2.2.3/bots/mamer/User.hh
lasker-2.2.3/bots/mamer/main.cc

index cf9f6e0..7e27de7 100644 (file)
@@ -26,8 +26,8 @@
 #ifndef _Game_
 #define _Game_
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
 
 extern "C" {
 #include <sys/param.h>
index 73f38a2..92db571 100644 (file)
 #ifndef _MAMER_
 #define _MAMER_
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
+
+using namespace std;
 
 extern "C" {
 #include <sys/param.h>
index 43daac0..2a2be8d 100644 (file)
@@ -29,8 +29,8 @@
 #ifndef _Player_
 #define _Player_
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
 
 extern "C" {
 #include <sys/param.h>
index efb5394..5b5c6ab 100644 (file)
@@ -32,8 +32,8 @@
 #ifndef _Storage_
 #define _Storage_
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
 
 extern "C" {
 #include <sys/param.h>
index 0abe3ac..7fc71ab 100644 (file)
@@ -16,8 +16,8 @@
 
 #define log22(x) (log(x)/log(2))
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
 
 extern "C" {
 #include <sys/param.h>
index 25c3e20..41596b0 100644 (file)
@@ -35,8 +35,8 @@
 #ifndef _TOURNEYPLAYERS_
 #define _TOURNEYPLAYERS_
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
 
 extern "C" {
 #include <sys/param.h>
index 9ef55e6..26d41f0 100644 (file)
 #ifndef _USER_
 #define _USER_
 
-#include <fstream.h>
-#include <iostream.h>
+#include <fstream>
+#include <iostream>
+
+using namespace std;
 
 extern "C" {
 #include <sys/param.h>
index 9144604..4895fd4 100644 (file)
@@ -45,10 +45,11 @@ int main(int argc, char **argv) {
            gMamer.Shutdown();
        }
        else
-           cerr << "ERROR: couldn't open server connection!" << endl;
+//         cerr << "ERROR: couldn't open server connection!" << endl;
+;
     else
-       cerr << "ERROR: couldn't initialize mamer!" << endl;
-
+//     cerr << "ERROR: couldn't initialize mamer!" << endl;
+;
     exit(0);
 } //- End of main