Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (297 Bytes)

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