Changeset 5587 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Nov 16, 2005, 1:55:42 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_stream.h
r5585 r5587 3 3 * implementation of a network pipe 4 4 */ 5 /* 5 6 6 #ifndef _NETWORK_STREAM 7 7 #define _NETWORK_STREAM 8 #define9 8 9 /* 10 10 #include "data_stream.h" 11 11 #include "network_protocol.h" … … 16 16 */ 17 17 18 class NetworkStream 18 class NetworkStream 19 19 { 20 20 … … 22 22 NetworkStream(); 23 23 ~NetworkStream(); 24 /* void writePacket();24 /* void writePacket(); 25 25 void readPacket(); 26 26 27 27 private: 28 28 NetworkProtocol& networkProtocol; 29 NetworkSocket& 29 NetworkSocket& networkSockets; 30 30 tList<Synchronizeable> synchronizeables; 31 31 friend NetworkMonitor& networkMonitor; 32 32 */ 33 } 33 }; 34 34 #endif /* _NETWORK_STREAM */ 35 35
Note: See TracChangeset
for help on using the changeset viewer.