Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5604 was 5604, checked in by bottac, 18 years ago
File size: 599 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
9#include "base_object.h"
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 : public virtual DataStream
19{
20
21public:
22  NetworkStream();
23  ~NetworkStream();
24   virtual void processData();
25
26private:
27  //NetworkProtocol* networkProtocol;
28  NetworkSocket*        networkSockets;
29  tList<Synchronizeable>* synchronizeables;
30};
31#endif /* _NETWORK_STREAM */
32
Note: See TracBrowser for help on using the repository browser.