Add 2-sec delay before issuing rmatch
[capablanca.git] / lasker-2.2.3 / bots / mamer / Game.hh
1 //--------------------------------------------------------------------------
2 // Game.hh - Class header for the Game class
3 //
4 // Matthew E. Moses & Michael A. Long
5 //
6 // $Revision: 1.3 $
7 // $Date: 1998/09/10 19:58:41 $
8 //
9 // $Author: mlong $
10 // $Locker:  $
11 //
12 // $Log: Game.hh,v $
13 // Revision 1.3  1998/09/10 19:58:41  mlong
14 // lots of little bug fixes and a few new features.
15 //
16 // Revision 1.2  1998/04/29 15:24:07  mlong
17 // prepairing for the move to daimi
18 // new sorting routine.
19 //
20 // Revision 1.1  1997/07/18 15:42:58  chess
21 // Initial revision
22 //
23 //
24 //--------------------------------------------------------------------------
25
26 #ifndef _Game_
27 #define _Game_
28
29 #include <fstream>
30 #include <iostream>
31
32 extern "C" {
33 #include <sys/param.h>
34 #include <sys/types.h>
35
36 #include <ctype.h>
37 #include <errno.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <strings.h>
41 #include <sys/stat.h>
42
43 #include <time.h>
44 #include <unistd.h>
45 }
46
47 #include "config.h"
48 #include "User.hh"
49 #include "link.hh"
50 #include "linklist.hh"
51
52 class Game : public Link {
53 public:
54
55   Game(char *, char *, int, int, int, char);
56   ~Game();
57   
58 int IsGame(char *, char *, int, int, int, char);
59
60 private:
61
62 public:
63
64   char whiteName[NAMELEN];
65   char blackName[NAMELEN];
66   int rated;
67   int time;
68   int inc;
69   char variation;
70   int gameNumber;
71
72 private:
73
74 };
75
76
77 #endif
78
79
80
81
82
83