Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5594 in orxonox.OLD


Ignore:
Timestamp:
Nov 16, 2005, 2:21:29 PM (18 years ago)
Author:
bottac
Message:
 
Location:
branches/network/src/lib/network
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_stream.cc

    r5566 r5594  
    2525
    2626
     27using namespace std;
     28
    2729NetworkStream::NetworkStream()
    28 {}
     30{
     31  /* set the class id for the base object */
     32  this->setClassID(CL_NETWORK_STREAM, "NetworkStream");
     33
     34  /* initialize the references */
     35  this->networkSockets = NULL;
     36  this->synchronizeables = NULL;
     37}
    2938
    3039NetworkStream::~NetworkStream()
  • branches/network/src/lib/network/network_stream.h

    r5591 r5594  
    1616
    1717
    18 class NetworkStream
     18class NetworkStream : public BaseObject
    1919{
    2020
     
    2626
    2727private:
    28  // NetworkProtocol* networkProtocol;
     28//NetworkProtocol* networkProtocol;
    2929  NetworkSocket*        networkSockets;
    3030  tList<Synchronizeable>* synchronizeables;
Note: See TracChangeset for help on using the changeset viewer.