Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/network_stream.h @ 5585

Last change on this file since 5585 was 5585, checked in by bottac, 18 years ago
File size: 614 bytes
Line 
1/*!
2 * @file network_stream.h
3 *  implementation of a network pipe
4 */
5/*
6#ifndef _NETWORK_STREAM
7#define _NETWORK_STREAM
8#define
9
10#include "data_stream.h"
11#include "network_protocol.h"
12#include "network_socket.h"
13#include "connection_monitor.h"
14#include "synchronizeable.h"
15#include "list.h"
16*/
17
18class NetworkStream
19{
20
21public:
22  NetworkStream();
23  ~NetworkStream();
24  /*void writePacket();
25  void readPacket();
26
27private:
28  NetworkProtocol& networkProtocol;
29  NetworkSocket&        networkSockets;
30  tList<Synchronizeable> synchronizeables;
31  friend NetworkMonitor& networkMonitor;
32 */
33}
34#endif /* _NETWORK_STREAM */
35
Note: See TracBrowser for help on using the repository browser.