Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 20, 2005, 12:25:50 AM (18 years ago)
Author:
patrick
Message:

network: modiefied the unit test to enable diffrent modes, extended the NetworkStream constructors interface and NetworkManager interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_stream.h

    r5610 r5647  
    77#define _NETWORK_STREAM
    88
    9 #include "base_object.h"
    109#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"
    1610
     11class Synchronizeable;
     12class NetworkSocket;
     13class ConnectionMonitor;
    1714
    1815class NetworkStream : public virtual DataStream
     
    2118public:
    2219  NetworkStream();
     20  NetworkStream(DataStream& inStream, DataStream& outStream);
     21  NetworkStream(Synchronizeable& sync, NetworkSocket& socket);
     22  NetworkStream(DataStream& inStream, NetworkSocket& socket);
     23  NetworkStream(Synchronizeable& sync, DataStream& outStream);
     24 
    2325  ~NetworkStream();
    24    virtual void processData();
     26   
     27  void init();
     28 
     29  virtual void processData();
    2530
    2631private:
Note: See TracChangeset for help on using the changeset viewer.