Alter Makefile to force 32-bit compile
[capablanca.git] / lasker-2.2.3 / bots / mamer / Storage.hh
1 //--------------------------------------------------------------------------
2 // Storage.hh - Class header for the Storage class
3 //
4 // Matthew E. Moses & Michael A. Long
5 //
6 // $Revision: 1.1 $
7 // $Date: 1998/09/10 19:58:41 $
8 //
9 // $Author: mlong $
10 // $Locker:  $
11 //
12 // $Log: Storage.hh,v $
13 // Revision 1.1  1998/09/10 19:58:41  mlong
14 // Initial revision
15 //
16 // Revision 1.3  1998/02/12 18:44:25  mlong
17 // *** empty log message ***
18 //
19 // Revision 1.2  1997/11/11 16:48:06  chess
20 // *** empty log message ***
21 //
22 // Revision 1.2  1997/10/23 19:56:12  chess
23 // *** empty log message ***
24 //
25 // Revision 1.1  1997/05/16 03:22:36  chess
26 // Initial revision
27 //
28 //
29 //
30 //--------------------------------------------------------------------------
31
32 #ifndef _Storage_
33 #define _Storage_
34
35 #include <fstream>
36 #include <iostream>
37
38 extern "C" {
39 #include <sys/param.h>
40 #include <sys/types.h>
41
42 #include <ctype.h>
43 #include <errno.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <strings.h>
47 #include <sys/stat.h>
48
49 #include <time.h>
50 #include <unistd.h>
51 }
52
53 #include "config.h"
54 #include "User.hh"
55 #include "link.hh"
56 #include "linklist.hh"
57
58 class Storage : public Link {
59 public:
60
61   Storage(char *, int);
62   Storage(char *, float);
63   Storage(char *, double);
64   Storage(char *, float, int);
65   Storage(char *, float, int, int);
66   ~Storage();
67 private:
68
69 public:
70
71   char name[NAMELEN];
72   int  value;
73   double floatValue;
74   int rating;
75
76 private:
77
78 };
79
80
81 #endif
82
83
84
85
86
87