Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 15, 2005, 1:00:55 AM (19 years ago)
Author:
patrick
Message:

network: added the missing NetworkStream files (they still need to be implemented) and added some small code to the NetworManager for preparation of the init process

File:
1 edited

Legend:

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

    r5533 r5566  
    22 * @file network_manager.h
    33  *  Main interface for the network module. Manages all the modules
    4 
    54*/
    65
     
    1413#include "base_object.h"
    1514
     15/* this are class predefinitions. the includes are in the source file */
     16class NetworkStream;
     17template<typename> class tList;
    1618
    17 
     19/* and here is the class itsself*/
    1820class NetworkManager : public BaseObject
    1921{
     
    3234  void synchronize();
    3335
     36private:
     37  tList<NetworkStream>*    netStreamList;            // list with refs to all network streams
     38   
    3439};
    3540
Note: See TracChangeset for help on using the changeset viewer.