Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 16, 2005, 2:12:30 PM (18 years ago)
Author:
rennerc
Message:

resolved conflict

File:
1 edited

Legend:

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

    r5588 r5592  
    1111#include "netdefs.h"
    1212
    13 /* include SDL_net header */
    14 #include "confincl.h"
    1513
     14/* include base_object.h since all classes are derived from this one */
     15#include "base_object.h"
    1616
    1717/* using namespace std is default, this needs to be here */
    1818using namespace std;
    1919
    20 class NetworkSocket
     20class NetworkSocket : public BaseObject
    2121{
    2222
    2323private:
    24         IPaddress serverAddress;
    25         unsigned int port;
    26         TCPsocket tcpSocket;
    27         UDPsocket udpSocket;
     24  IPaddress serverAddress;
     25  unsigned int port;
     26  TCPsocket tcpSocket;
     27  UDPsocket udpSocket;
    2828
    2929public:
Note: See TracChangeset for help on using the changeset viewer.