Changeset 5594 in orxonox.OLD for branches/network
- Timestamp:
- Nov 16, 2005, 2:21:29 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_stream.cc
r5566 r5594 25 25 26 26 27 using namespace std; 28 27 29 NetworkStream::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 } 29 38 30 39 NetworkStream::~NetworkStream() -
branches/network/src/lib/network/network_stream.h
r5591 r5594 16 16 17 17 18 class NetworkStream 18 class NetworkStream : public BaseObject 19 19 { 20 20 … … 26 26 27 27 private: 28 //NetworkProtocol* networkProtocol;28 //NetworkProtocol* networkProtocol; 29 29 NetworkSocket* networkSockets; 30 30 tList<Synchronizeable>* synchronizeables;
Note: See TracChangeset
for help on using the changeset viewer.