Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7770 in orxonox.OLD


Ignore:
Timestamp:
May 23, 2006, 2:09:38 PM (18 years ago)
Author:
patrick
Message:

removed an include only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_log.h

    r7755 r7770  
    99#include "netdefs.h"
    1010#include "debug.h"
    11 #include "SDL_net.h"
     11
    1212
    1313#include <string>
     
    4444    /** @returns a Pointer to the only object of this Class */
    4545    inline static NetworkLog* getInstance(void) { if (!singletonRef) singletonRef = new NetworkLog();  return singletonRef; };
    46    
     46
    4747    bool listen( int port );
    48    
     48
    4949    void printfnet( );
    50    
     50
    5151    void printfn( char * format, ... );
    5252    void printf0( char * format, ... );
     
    5959  private:
    6060    NetworkLog();
    61    
     61
    6262    void acceptNewConnections();
    63    
     63
    6464    static NetworkLog* singletonRef;
    65    
     65
    6666    TCPsocket listensock;
    6767    std::list<TCPsocket> sockets;
    68    
     68
    6969    char buf[NETWORK_LOG_BUFLEN];
    7070};
Note: See TracChangeset for help on using the changeset viewer.