Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7799 in orxonox.OLD


Ignore:
Timestamp:
May 24, 2006, 1:09:35 PM (18 years ago)
Author:
patrick
Message:

network: removed some false include

File:
1 edited

Legend:

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

    r7778 r7799  
    99#include "netdefs.h"
    1010#include "debug.h"
    11 #include "SDL_net.h"
    1211
    1312#include <string>
     
    4443    /** @returns a Pointer to the only object of this Class */
    4544    inline static NetworkLog* getInstance(void) { if (!singletonRef) singletonRef = new NetworkLog();  return singletonRef; };
    46    
     45
    4746    bool listen( int port );
    48    
     47
    4948    void printfnet( );
    50    
     49
    5150    void printfn( char * format, ... );
    5251    void printf0( char * format, ... );
     
    5958  private:
    6059    NetworkLog();
    61    
     60
    6261    void acceptNewConnections();
    63    
     62
    6463    static NetworkLog* singletonRef;
    65    
     64
    6665    TCPsocket listensock;
    6766    std::list<TCPsocket> sockets;
    68    
     67
    6968    char buf[NETWORK_LOG_BUFLEN];
    7069};
Note: See TracChangeset for help on using the changeset viewer.