Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / ColonetClient / includes / Lcd.h @ 13

History | View | Annotate | Download (286 Bytes)

1 13 emarinel
/**
2
 *
3
 *  @author Jason Knichel
4
 *
5
 *  4/12/07
6
 */
7
8
#ifndef LCD_H
9
#define LCD_H
10
11
#include "command_defines.h"
12
#include "Server.h"
13
14
class Lcd
15
{
16
 public:
17
  Lcd();
18
  void printUsage();
19
  int parseCommand(char tokens[MAX_TOKENS][MAX_TOKEN_SIZE], int numTokens, Server server);
20
21
};
22
23
#endif