1 //--------------------------------------------------------------------------
2 // Command.hh - Class header for the Command class
7 // $Date: 1998/09/10 19:58:31 $
12 // $Log: Command.hh,v $
13 // Revision 1.5 1998/09/10 19:58:31 mlong
14 // *** empty log message ***
16 // Revision 1.4 1997/05/15 18:29:12 chess
17 // added pending and TourneyPlayers support
18 // added HandleGetPlayerInfo & HandleGetGameInfo
20 // Revision 1.3 1997/04/13 03:21:32 chess
21 // constructor changed to accomodate the params list
23 // Revision 1.2 1997/04/07 22:21:43 chess
24 // *** empty log message ***
26 // Revision 1.1 1996/10/01 20:14:43 moses
30 //--------------------------------------------------------------------------
44 class Command : public Link {
47 Command(char *, char *, ranks, char *, char *, USERFP);
48 Command(char *, char *, ranks, char *, char *, TOURNFP);
51 int IsCommand(char *);
52 ranks GetManagerLevel();
53 void SetManagerLevel(ranks);
54 char *GetCommandName();
55 char *GetCommandAlias();
56 char *GetCommandDescription();
62 TOURNFP tournFunction;
64 char parameterList[MAXNUMPARAMS];