Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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