Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 27, 2007, 11:30:17 PM (16 years ago)
Author:
nicolasc
Message:

cleaned up network, builds with CML

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/merger/src/network/Server.cc

    r278 r285  
    22// C++ Implementation: Server
    33//
    4 // Description: 
     4// Description:
    55//
    66//
     
    1212
    1313
    14 #include "network/Server.h"
     14#include "Server.h"
    1515
    1616namespace network{
    17  
     17
    1818  /**
    1919   * Constructor for default values (bindaddress is set to ENET_HOST_ANY
    20    * 
     20   *
    2121   */
    2222  Server::Server(){
    23    
    24    
     23
     24
    2525  }
    26  
     26
    2727  /**
    2828   * Constructor
     
    3131   */
    3232  Server::Server(int port, std::string bindAddress) : connection(port, bindAddress){
    33    
    34    
     33
     34
    3535  }
    36  
     36
    3737  /**
    3838   * Constructor
     
    4141   */
    4242  Server::Server(int port, const char *bindAddress) : connection(port, bindAddress){
    43    
    44    
    45    
    46    
     43
     44
     45
     46
    4747  }
    48  
    49  
    50  
    51  
    52  
     48
     49
     50
     51
     52
    5353}
Note: See TracChangeset for help on using the changeset viewer.