Changeset 5601 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Nov 16, 2005, 2:57:15 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/data_stream.cc
r5600 r5601 43 43 * This constructor creates a new DataStream and connects the Synchronizeable to it 44 44 */ 45 DataStream::DataStream(Synchroniz able& sync, DataStream& downStream)45 DataStream::DataStream(Synchronizeable& sync, DataStream& downStream) 46 46 { 47 47 this->setClassID(CL_DATA_STREAM, "DataStream"); … … 51 51 * This constructor creates a new DataStream and connects the NetworkSocket to it 52 52 */ 53 DataStream::DataStream(DataStream& upStream, NetworkSoc ekt& socket)53 DataStream::DataStream(DataStream& upStream, NetworkSocket& socket) 54 54 { 55 55 this->setClassID(CL_DATA_STREAM, "DataStream"); -
branches/network/src/lib/network/network_stream.cc
r5598 r5601 10 10 11 11 ### File Specific: 12 main-programmer: 12 main-programmer: claudio 13 13 co-programmer: 14 14 */ -
branches/network/src/lib/network/network_stream.h
r5598 r5601 9 9 #include "base_object.h" 10 10 #include "data_stream.h" 11 // 11 //#include "network_protocol.h" 12 12 #include "network_socket.h" 13 13 #include "connection_monitor.h" … … 25 25 26 26 private: 27 //NetworkProtocol* networkProtocol;27 //NetworkProtocol* networkProtocol; 28 28 NetworkSocket* networkSockets; 29 29 tList<Synchronizeable>* synchronizeables;
Note: See TracChangeset
for help on using the changeset viewer.