Project

General

Profile

Revision 453

fixed compile errors in colonetserver

View differences:

Command.h
9 9
#define COMMAND_H
10 10

  
11 11
#include <ConnectionPool.h>
12
#include <ColonetServer.h>
12 13
#include <list>
13 14

  
14 15
class Command {
15 16
 public:
16
  Command(ConnectionPool * connection_pool);
17
  Command(ConnectionPool * connection_pool, ColonetServer* cs);
17 18
  ~Command();
18 19

  
19 20
  int parse_command(char* command, int pool_index);
......
30 31
  int parse_request_robot_positions(int pool_index);
31 32

  
32 33
  ConnectionPool * connection_pool;
34
  ColonetServer* colonet_server;
33 35
};
34 36

  
35 37

  

Also available in: Unified diff